线条颜色(Line Color):使用 color 参数可以设置线条的颜色。例如,plot(x, y, 'r') 将绘制红色的线条。常见的颜色选项包括 'b'(蓝色)、'g'(绿色)、'r'(红色)等。 线条样式(Line Style):使用 'LineStyle' 参数可以设置线条的样式,例如实线、虚线、点线等。例如,plot(x, y, '--') 将绘制虚线。 线条...
1 第一,启动MATLAB,新建脚本(Ctrl+N),输入如下代码:close all;clear all;clcx=0:pi/50:2*pi;y=sin(x);hline1=plot(x,y,'k','linewidth',3);hline2=line(x+0.05,y,'linewidth',4,'color',[.8,.8,.8]);set(gca,'children',[...
line([1 2],[3 4],'Color','w','LineWidth',10);画的是点(1,3)到点(2,4)的直线,w是颜色,10是宽度。
x = linspace(-2*pi,2*pi); y1 = sin(x); y2 = cos(x); p = plot(x,y1,x,y2); 1. 2. 3. 4. 得到: Change the line width of the first line to 2. Add star markers to the second line. Starting in R2014b, you can use dot notation to set properties. If you are using ...
Change the line color of 2D graphics. To change the line color, add lines to the group in plot (x, y) and set input parameters. For example, 'g' will draw a green line. 我们也可以同时指定线条形状和颜色,如'r:*' ,将绘制星标号的绿色点线。
最后一句画图有问题,请修改为 plot(xi,y0,'o',xi,y1,xi,y2,'-');或者以点表示修改为plot(xi,y0,'o',xi,y1,xi,y2,'-.');效果看截图
plot(x, y, 'CLM') C:曲线的颜色(Colors) L:曲线的格式(Line Styles) M:曲线的线标(Markers) x = 0:0.5:4*pi; % x 向量的起始与结束元素为 0 及 4*pi, 0.5为各元素相差值 y = sin(x); plot(x,y,'k:diamond') % 其中k代表黑色,:代表点线,而diamond则指定菱形为曲线的线标 ...
Because each of your two plots contains two series, the variable hLine is an array of two line objects. Unfortunately, dot notation doesn't work on arrays of objects yet. That means that you need to use set like dpb showed above.
"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...
lineSpec包含设置线条样式(line-style),标记符号(marker)和颜色(color) , 表示对plot绘制图形的样式、标记符合和颜色进行调整 。 三个属性没有顺序,如果缺少一个,则表示没有 matlab文档中提供了所有的样式颜色符号表,help plot 可以查看参考页的input Arguments(输入参数)中的LineSpec,可以查看line-style、marker、colo...