线条颜色(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是宽度。
y,"LineWidth",2,"LineStyle","--")) % 横坐标为x,纵坐标为y,线宽为2,线型为--的折线图 plot(x,y,"LineWidth",2,"LineStyle","--","Color",[0.1,0.2,0.3]) % 横坐标为x,纵坐标为y,线宽为2,线型
plot(x, y1, x, y2, '--', x, y3, ':') plot(x, y1, x, y2, '--r', x, y3, ':r') line(x,y,'Color','red','LineStyle','--') 默认线宽0.5(磅),推荐设置1、1.5或2,视情况而定。创建基本线条 - MATLAB line - MathWorks 中国 数据点标记 指定绘图中的线和标记的外观 - MATLAB...
最后一句画图有问题,请修改为 plot(xi,y0,'o',xi,y1,xi,y2,'-');或者以点表示修改为plot(xi,y0,'o',xi,y1,xi,y2,'-.');效果看截图
lineSpec包含设置线条样式(line-style),标记符号(marker)和颜色(color) , 表示对plot绘制图形的样式、标记符合和颜色进行调整 。 三个属性没有顺序,如果缺少一个,则表示没有 matlab文档中提供了所有的样式颜色符号表,help plot 可以查看参考页的input Arguments(输入参数)中的LineSpec,可以查看line-style、marker、colo...
两个函数的格式不同:\x0d\x0aplot(X,Y,S); % X,Y为坐标,画出一个点,S为其它属性(颜色,点的大小等)。\x0d\x0aline([X1 X2],[Y1 Y2],S); %点A(X1,Y1)和点B(X2 Y2)之间画一条直线,S为其它属性(颜色,线的粗细等)。\x0d\x0a详细资料可以在matlab主面板里输入 ...
plot([1 2 3 4 5 6],[0 3 1 6 4 10],'o') You can use thelinespecargument to specify a named color, but to specify a custom color, set an object property. For example,Lineobjects have aColorproperty. Create a plot with a purple line that has circular markers. Specify only the ...
%much more efficient than matlab's scatter plot for k=1:size(map,1) if any(ind==k) h(end+1) = line('Xdata',x(ind==k),'Ydata',y(ind==k), ... 'LineStyle','none','Color',map(k,:), ... 'Marker','.','MarkerSize',ms); ...