Matlab学习笔记——matlab画图指令 (转帖) 1.基本画图程序如下:view plaincopy to clipboardprint?x=0:pi/1000:2*pi; y1=sin(2*x); y2=2*cos(2*x); %输出图像 plot(x,y1,'k-',x,y2,'b--'); title(' Plot of f(x)=sin(2x) and its derivative'); %设置X坐标和Y坐标的标签 xlabel('x'); ylabel('y'); %制作图例 legend('f(x)
2022-07-06 09:09:41
738KB
文档资料