y2=2*exp(-0.5*x).*cos(pi*x);plot(x,y2,'bp'); 5.2 图形标注与坐标控制 图形标注 有关图形标注函数的调用格式为: title(图形名称) xlabel(x轴说明) ylabel(y轴说明) text(x,y,图形说明) legend(图例1,图例2,…) 坐标控制 axis函数的调用格式为: axis([xmin xmax ymin ymax zmin zmax]) ax...
% 坐标轴标签、刻度、背景的打开和关闭:axisonaxisoffxlabel("这里填写X轴名称");ylabel("这里填写Y轴名称");legend('曲线a','曲线b','曲线c'); 绘图的曲线设置 % 线型设置,只需要在绘制的时候,直接用引号括出线型即可plot(x,y,'--')% 线型便是双虚线% 颜色设置 plot(x,y,'r') % 曲线将绘制出...
AX(1)是左轴,AX(2)是右轴。%%设置两个纵坐标的名称set(get(AX(1),'ylabel'),'String','Slow Decay') %第一个纵坐标的名称set(get(AX(2),'ylabel'),'String','Fast Decay') %第二 个纵坐标的名称%上述两行代码可以用以下两行代码替换。%ylabel(AX(1),'Slow Decay') % left y-axis%ylabel(...
方法/步骤 1 随机抽取8个点,进行绘图。n = 8;x = rand(n,1);y = rand(n,1);plot(x,y,'.')axis([0 1 0 1])2 按“Enter”键。如图1所示。3 用两条样条曲线插值点,用较细的间距计算。用红线标出插值曲线。t = 1:n;ts = 1:1/10:n;xs = spline(t,x,ts);ys = spline...
1.plot绘单条曲线图 plot draw a single curve graph x=0:0.01*pi:2*pi; y=sin(x); plot(x,y) 2.plot绘制多条曲线图 plot plots multiple curves 格式为:plot(x,y1,x2,y2,...,xn,yn) The format is: plot(x,y1,x2,y2,...,xn,yn) 以向量对的...
命令行键入:x = 1:11;data1 = [4889 5273 5382 5173 4860 4675 4313 4059 3855 3608 3297];data2 = [16.4 17.4 17.4 16.5 15.4 14.7 13.5 12.5 11.7 10.8 9.7];plotyy(x,data1,x,data2,'bar','plot') % left y-axis with bar, right y-axis ...
实例一:多子图、命令plot、图形标识(图名和横纵坐标)演示 多子图:subplot (m,n,k) 一个窗口划分成mn个小块,每个小块存放一个子图,k是子图的编号。 编号规则是: 从左到右边,从上到下依次编号。 %% 定义函数 t = (0:pi/50:2*pi)'; % 列向量 101*1 ...
h=plotyy(x,y1,x,y2,'plot');set(h(2),'ylim',[50 90])box off
y2=2*exp(-0.5*x).*cos(pi*x);plot(x,y2,'bp'); 5.2 图形标注与坐标控制 图形标注 有关图形标注函数的调用格式为: title(图形名称) xlabel(x轴说明) ylabel(y轴说明) text(x,y,图形说明) legend(图例1,图例2,…) 坐标控制 axis函数的调用格式为: axis([xmin xmax ymin ymax zmin zmax]) ax...
;x2 = [1:.2:20];y2 = x2.^2./x2.^3;hl1 = line(x1,y1,'Color','r');ax1 = gca;set(ax1,'XColor','r','YColor','r')ax2 = axes('Position',get(ax1,'Position'),... 'XAxisLocati...