How to draw multiple plots in one plot in Matlab??
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have some ellipses and curves to plot on same graph. How to do it? Please help
0 Kommentare
Antworten (2)
KALYAN ACHARJYA
am 8 Sep. 2018
Bearbeitet: KALYAN ACHARJYA
am 8 Sep. 2018
Plot(1);
hold on;
plot(2);
.....
plot(n)
hold off;
Another way, if all having the same x scale, you can do the following also
plot(x,y1,x,y2,x,y3....)
2 Kommentare
KALYAN ACHARJYA
am 8 Sep. 2018
Bearbeitet: KALYAN ACHARJYA
am 8 Sep. 2018
Can you share the code? So that I can try on it. Please, note on scaling range of variables and result.
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!