Connecting plots of time series from a matrix data set?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Fercho_Sala
am 29 Jun. 2021
Beantwortet: Fercho_Sala
am 2 Jul. 2021
Hello everyone, probably is an easy question,,, but with a matrix of 62(days)x48(sample points each one) as the one is attached, How can I plot this as day per day in one graphic? (62 intervals) Being x axis the day number. Thank you.
0 Kommentare
Akzeptierte Antwort
Scott MacKenzie
am 29 Jun. 2021
Bearbeitet: Scott MacKenzie
am 29 Jun. 2021
I assume you're expecting a lot of clutter, since you are plotting 48 points for each of 62 days. Just use
plot(SS48h)
Here's the result with your data:
2 Kommentare
Scott MacKenzie
am 29 Jun. 2021
Bearbeitet: Scott MacKenzie
am 29 Jun. 2021
Well, there are a variety of possibilities. Here's one...
% your data in M
tiledlayout('flow');
n = size(M,1);
for i=1:n
nexttile;
plot(M(i,:));
set(gca,'ylim',[0 10]);
title(sprintf('Day %d',i));
end
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!