How can I take out months rows from each year.
1 次查看(过去 30 天)
显示 更早的评论
回答(2 个)
Hiro Yoshino
2020-2-10
d = ['190101'; '190201'; '190301']; % sample data
d_datetime = datetime(d, 'InputFormat', 'yyMMdd'); % change format to datetime
[y,m,d] = ymd(d_datetime); % break it into pieces
idx = m == 1 | m == 2; % extract the indices corresponding to Jan and Feb. You can add " | m == 12 " to extract December!
Please take a look at this. I belive this is applicable to your problem.
2 个评论
Image Analyst
2020-2-10
Then
yourTable = yourTable(~idx, :); % Extract all rows EXCEPT rows identified by idx.
Hiro Yoshino
2020-2-10
编辑:Hiro Yoshino
2020-2-10
I guess your date is not read as string.
tableData = readtable('yourExcel.xlsx');
tableData.Time = string(tableData.Time);
Then you can start from
d_datetime = datetime(tableData.Time, 'InputFormat', 'yyMMdd'); % change format to datetime
2 个评论
Hiro Yoshino
2020-2-10
[y,m,d] = ymd(d_datetime); % break it into pieces
idx = m == 1 | m == 2; % extract the indices corresponding to Jan
Do not forget these lines!! Good luck! almost there.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time Series 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!