How to plot a graph?
Mostra commenti meno recenti
I have a matrix of 50x6 and range between 0 - 1.
Now I have to plot in a way such that X and Y axis range is 0 to 1 and graph should have 50 lines (row-wise data of the matrix).
can you enlightnen me in plotting this?
Risposte (2)
KSSV
il 20 Set 2021
You can striaght away use plot on 50*6 matrix.
plot(A) ; % A is 50*6 matrix
legend
3 Commenti
Harsha M V
il 20 Set 2021
Harsha M V
il 20 Set 2021
KSSV
il 20 Set 2021
Transpose A..
plot(A') ;
Harsha M V
il 21 Set 2021
0 voti
Categorie
Scopri di più su Annotations in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

