How can i plot f(i),g(i),h(i) in one figure(i)?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
MA
el 7 de Jun. de 2014
Comentada: Star Strider
el 7 de Jun. de 2014
I want to plot each three diagrams in one figure
0 comentarios
Respuesta aceptada
Star Strider
el 7 de Jun. de 2014
Your loop becomes:
figure(1)
for i = 1:3
subplot(3,1,i)
. . .
plot(x,f(i),'-b', ... )
. . .
end
to get 3 stacked plots in one figure. Other configurations are possible. See the documentation on subplot for details.
6 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!