extract numbers from time series
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Johannes Deelstra
am 13 Aug. 2018
Kommentiert: Johannes Deelstra
am 13 Aug. 2018
Have a time series from 1 to 156. Want to extract the values from 1:6, then from (1+12) : (6+12), etc into a new variable. How to go about.
6 Kommentare
Adam Danz
am 13 Aug. 2018
Ok. If the numbers are serial date numbers that matlab recognizes, my solution should work well. Otherwise, we'd just need to convert them to a format that Matlab recognizes which should be fairly simple.
Akzeptierte Antwort
Adam Danz
am 13 Aug. 2018
I don't know what format your dates are in but this can be adapted to any format. I assume your matrix is named 'data' and the dates are in the 5th column.
% Get the month number for each date
monthNum = month(data(:,5));
% Logical index of rows that are between May and October
monthIdx = ismember(monthNum, [5:10]);
% Extract your data for these months
data(monthIdx, :)
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Calendar 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!