plot columns of matrix
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
suppose I have a 4x100 matrix Ctrack. The four rows each correspond to a different variable, and they change with time from one column to the next. How would I plot it so that on the same plot i have four different curves showing how each variable changes across the different columns?
0 commentaires
Réponses (1)
Geoff Hayes
le 1 Mai 2019
Modifié(e) : Geoff Hayes
le 1 Mai 2019
...
If Y is a matrix, then the plot function plots the columns of Y versus their row number. The x-axis scale ranges from 1 to the number of rows in Y.
In your case, you want to plot the rows of Y versus their column number. So perhaps try transposing the data and do as
plot(Ctrack');
0 commentaires
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!