How to adjust the y scale of a gain and phase plots to be consistent?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Kiran
il 30 Dic 2015
Modificato: Kiran
il 30 Dic 2015
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 Commenti
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!