How can I plot a lot of data sets quickly?
Mostrar comentarios más antiguos
The way I am currenlty coding is indivudually writing out every plot for all x & t variable for all 14 data sets that I have for a spring-mass damping system. Graphing displacement over time, but for 14 trials. Is there an easier way to plot all 14 runs rather than writing out each time "plot(t1,x1); plot(t2,x2).....etc."
Respuestas (1)
Rik
el 5 de Oct. de 2021
0 votos
Make sure you load the data to an array instead of numbered variables. That way you can use a simple for loop and indexing.
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!