How to adjust the y scale of a gain and phase plots to be consistent?
2 次查看(过去 30 天)
显示 更早的评论
I am working with around 330 conditions that require to plot gain and phase margins. when I overlay all conditions in one plot the y-axis of the phase diagram is (-180 to 180) which is what I want. However, when I plot each condition separately the phase margin (y-axis) is inconsistent. I want it to be within -180 and 180. can anyone shed some light on this issue?
0 个评论
回答(1 个)
Kiran
2015-12-30
编辑:Kiran
2015-12-30
As per my understanding, you want to fix the y-axis range from -180 to 180 for all plots.
Following code sets the axis limits for x-axis. Similarly you can modify for y-axis.
x1 = linspace(0,10,100);
y1 = sin(x1);
ax1 = subplot(2,1,1);
plot(ax1,x1,y1)
x2 = linspace(0,5,100);
y2 = sin(x2);
ax2 = subplot(2,1,2);
plot(ax2,x2,y2)
axis([ax1 ax2],[0 10 -1 1])
This would plot figure as below: /matlabcentral/answers/uploaded_files/42552/SetAxisLimitsForMultipleAxesExample_01.png
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!