extract numbers from time series
Show older comments
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 Comments
Adam Danz
on 13 Aug 2018
That's not enough in your example for anyone to extrapolate the pattern you seek. For example, would the subunits be 1:6, 13:18, 14:19, 15:20? Or 1:6, 13:18, 19:24,... ?
Johannes Deelstra
on 13 Aug 2018
Adam Danz
on 13 Aug 2018
What format are your dates in?
class(data(:,5))
Johannes Deelstra
on 13 Aug 2018
Adam Danz
on 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.
Johannes Deelstra
on 13 Aug 2018
Accepted Answer
More Answers (1)
Fangjun Jiang
on 13 Aug 2018
a=1:156;
b=reshape(a,6,[]);
c=b(:,1:2:end)
Categories
Find more on Calendar in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!