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

1 visualización (últimos 30 días)
sangita kamat
sangita kamat el 8 de Sept. de 2018
Respondida: Image Analyst el 8 de Sept. de 2018
I have some ellipses and curves to plot on same graph. How to do it? Please help

Respuestas (2)

KALYAN ACHARJYA
KALYAN ACHARJYA el 8 de Sept. de 2018
Editada: KALYAN ACHARJYA el 8 de Sept. de 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 comentarios
sangita kamat
sangita kamat el 8 de Sept. de 2018
Thanks Kalyan, but 'hold on' doesn't work.
KALYAN ACHARJYA
KALYAN ACHARJYA el 8 de Sept. de 2018
Editada: KALYAN ACHARJYA el 8 de Sept. de 2018
Can you share the code? So that I can try on it. Please, note on scaling range of variables and result.

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 8 de Sept. de 2018
See attached demo.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by