how to plot specific column from a matrix
20 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello everyone, I have a 349525 x 4 double matrix, if I try to plot the graph of column 1 vs column 4, what should my command be. I've tried plot(M(:,1),M(:,4)) already and it didn't work out. Any help will be much appreciated. Thank you.
0 Commenti
Risposte (1)
KSSV
il 12 Gen 2022
A = rand(100,4) ;
plot(A(:,1),A(:,4)) % plot 1 column w.r.t. 4 column
If this is not working. Show us the full error or tell us how the plot is.
2 Commenti
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!