放大时图形剪辑的幅度

时间:2013-03-14 13:46:16

标签: matlab plot

这是我正在使用

绘图的代码
 figure
 x = -pi:pi/40:pi;
 plot(x,cos(5*x),'-ro',x,sin(5*x),'-.b')
 hleg1 = legend('cos_x','sin_x');

输出如下:

enter image description here

当我尝试拉伸时间轴时,我得到的是这样的:

enter image description here

但是可以看出,当我拉伸时间轴时,振幅会被削减。当拉伸时间轴和v.V时,如何避免这种幅度削波?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用“放大”,加号放大镜图标,并非常小心地选择图像的整个垂直范围。使用axis功能更精确地控制轴的最小值和最大值。

 figure
 x = -pi:pi/40:pi;
 plot(x,cos(5*x),'-ro',x,sin(5*x),'-.b')
 hleg1 = legend('cos_x','sin_x');
 axis([1.6, 3.2,-1, 1])