How to plot variables with different array sizes?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Garrett
el 14 de Abr. de 2022
Editada: the cyclist
el 14 de Abr. de 2022
I'm trying to plot three different trajectory curves (altitude with respect to time), but each of the three curves has a different array size:
t1 = 1x13462 double, Y1 = 1x13462 double
t2 = 1x7041 double, Y2 = 1x7041 double
t3 = 1x31203 double, Y3 = 1x31203 double
I want to plot all these on the same plot, with t on the x-axis and Y on the y-axis. Is there any way to do this without plotting them individually in subplots? Thanks!
0 comentarios
Respuesta aceptada
Más respuestas (2)
the cyclist
el 14 de Abr. de 2022
Editada: the cyclist
el 14 de Abr. de 2022
Here is one way:
figure
hold on
plot(t1,Y1)
plot(t2,Y2)
plot(t3,Y3)
Another is:
figure
plot(t1,Y1,t2,Y2,t3,Y3)
0 comentarios
mark li
el 14 de Abr. de 2022
You may :
plot(t1,Y1,t2,Y2,t3,Y3)
Otherwise,
plot(t1,Y1)
hold on
plot(t2,Y2)
plot(t3,Y3)
0 comentarios
Ver también
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!