Subplot a matrix within a single Graph
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I have a matrix with four columns and 40 rows. I want to plot these entries in a single plot with the first column in the upper left corner, the second in upper right left corner, third column in lower left corner, and fourth column in lower right corner of a single graph.
Can someone give a tip or code snippet?
Thanks!
2 Commenti
Risposte (1)
Akiva Gordon
il 13 Nov 2012
For some random data of 40 rows, 4 columns, this plots a line plot
data = rand(40,4);
for i = 1:size(data,2)
subplot(2,2,i)
plot(data(:,i))
end
To plot only the points (no lines connecting them), use instead:
plot(data(:,1),'.')
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots 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!