How to draw multiple plots in one plot in Matlab??

1 回表示 (過去 30 日間)
sangita kamat
sangita kamat 2018 年 9 月 8 日
回答済み: Image Analyst 2018 年 9 月 8 日
I have some ellipses and curves to plot on same graph. How to do it? Please help

回答 (2 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 9 月 8 日
編集済み: KALYAN ACHARJYA 2018 年 9 月 8 日
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 件のコメント
sangita kamat
sangita kamat 2018 年 9 月 8 日
Thanks Kalyan, but 'hold on' doesn't work.
KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 9 月 8 日
編集済み: KALYAN ACHARJYA 2018 年 9 月 8 日
Can you share the code? So that I can try on it. Please, note on scaling range of variables and result.

サインインしてコメントする。


Image Analyst
Image Analyst 2018 年 9 月 8 日
See attached demo.

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by