线条颜色(Line Color):使用 color 参数可以设置线条的颜色。例如,plot(x, y, 'r') 将绘制红色的线条。常见的颜色选项包括 'b'(蓝色)、'g'(绿色)、'r'(红色)等。 线条样式(Line Style):使用 'LineStyle' 参数可以设置线条的样式,例如实线、虚线、点线等。例如,plot(x, y, '--') 将绘制虚线。 线条...
%首先创建三色色带 color1=[66 122 178]/255; color2=[240 145 72]/255; color3=[255 152 150]/255; %其次绘制三条线 figure %创建一个新的图层窗口 x=0.1:0.1*pi:2*pi; plot(x,cos(x),'--','color',color1,'LineWidth', 3); hold on plot(x,3*cos(0.5*pi*x),'-.','color',color2...
最后一句画图有问题,请修改为 plot(xi,y0,'o',xi,y1,xi,y2,'-');或者以点表示修改为plot(xi,y0,'o',xi,y1,xi,y2,'-.');效果看截图
2. 蓝色('-b')蓝色是科学图表中的经典选择,它代表了精确和专业。示例代码是:plot([1 10],[2 2],'-b','linewidth',2);3. 红色('-r')醒目的红色用于强调重要数据点或趋势变化,如:plot([1 10],[3 3],'-r','linewidth',2);4. 橘黄色('-','color',[255 174 0]/255)...
"Color",[0.1,0.2,0.3]) % 横坐标为x,纵坐标为y,线宽为2,线型为--,指定颜色的折线图 plot(x,y1,x,y2,'--',x,y3,':') % 分组绘制多折线图,并分别指定线型 plot(x,y,'-o','MarkerIndices',1:5:length(y)) % 设置线型,并设置显示的标记数量 plot(x,y,'-o','MarkerIndices',[1 5 10...
1)x,y是两组向量,且它们的长度相等,则plot(x,y)可以直观地绘出以x为横坐标,y为纵坐标的图形. 如:画正弦曲线: t=0:0.1:2*pi; y=sin(t); plot(t,y) 2)当 plot(x,y)中,x是向量,y是矩阵时,则绘制y矩阵中各行或列对应于30向量x的曲线.如果y阵中行的长度与x向量的 长度相同,则以y的行数据...
lines=findobj(gcf,'type','line')lines=Line-属性:Color:[00.44700.7410]LineStyle:'-'LineWidth:0...
of the lines. For example, plot(X,Y,'LineWidth',2,'Color',[.6 0 0]) will create a plot with a dark red line width of 2 points. Example x = -pi:pi/10:pi; y = tan(sin(x)) - sin(tan(x)); plot(x,y,'--rs','LineWidth',2,... ...
PLOT4 Plot colored lines and points in 3-D space PLOT3(x,y,z,c), where x, y, z and c are four vectors of the same length N, plots a line in 3-space through the points whose coordinates are the elements of x, y and z, colored according to the values in c. The line consist...
一. plot函数 plot 函数是最基本的绘图函数,其基本的调用格式为: 1.plot(y)---绘制向量y对应于其元素序数的二维曲线图, 如果y为复数向量,则绘制虚部对于实部的二维曲线图. 例:绘制单矢量曲线图. y=[0 0.6 2.3 5 8.3 11.7 15 17.7 19.4 20]; plot(...