How to plot multiple matrices?

62 visualizaciones (últimos 30 días)
Abigail Felch
Abigail Felch el 18 de Sept. de 2020
Comentada: Abigail Felch el 18 de Sept. de 2020
I have three single row matrices that i want to plot against their position, x=(1:1:6) on the same graph.
These are the matrices i want to plot:
y1 =
308.0035 301.1535 301.0850 296.2900 293.5500 273.0000
y2 =
313.8800 305.8800 305.8000 300.2000 297.0000 273.0000
y3 =
325.0035 318.1535 318.0850 313.2900 310.5500 290.0000
So how do i get these values to plot together?
Thanks in advance.

Respuestas (1)

madhan ravi
madhan ravi el 18 de Sept. de 2020
Editada: madhan ravi el 18 de Sept. de 2020
Y = [y1(:), y2(:), y3(:)];
plot(Y)
  1 comentario
Abigail Felch
Abigail Felch el 18 de Sept. de 2020
thank you, that will work for what i need. :)

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by