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 CenterFile Exchange에서 2-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