Plot 2D matrix on 2D graph
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Muhammad Sarim Mehdi
le 23 Jan 2019
Réponse apportée : Iqra
le 1 Mai 2024
I have a matrix of 24 rows and 1000 columns. What I want is a 2D plot where, on the x-axis, I have the iterations and on the y-axis I have the value associated to each of the 24 row elements for the corresponding column (where column is indexed by iteration). So, that means, at each iteration I have 24 different colored plots. When I use plot(mygraph) I get a plot where I have the 24 row elements on the x-axis and on the y-axis I have the value for the row element changing vertically. However, I want to see the change in a row element over the course of the 1000 columns. I hope I made my question clear enough. Please help me in representing my data correctly, thank you!
0 commentaires
Réponse acceptée
Star Strider
le 23 Jan 2019
Plot it against a 1000-element row vector:
figure
plot((1:1000), YourMatrix)
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!