Split individual cell into multiple cells

조회 수: 2 (최근 30일)
Kate
Kate 2016년 11월 23일
답변: Kate 2016년 11월 23일
I have a variable that I've imported into my workspace which has the following format:
TIMESTAMP
20100101
20100102
20100103
etc
How can I split the individual cells so that they are individual variables with only the year, month or day? As in: 2010
2010
2010 and
01
02
03
etc.
Thanks a bunch! K

채택된 답변

Kate
Kate 2016년 11월 23일
Answered my own question and will post for anyone who has the same issue. datevec extracts the month and day. Example:
t=datevec(TIMESTAMP)
55004 10 29 0 0 0
55004 10 30 0 0 0
55004 10 31 0 0 0
55004 11 1 0 0 0
55004 11 2 0 0 0
Then just reference specific columns of t. As in:
Month=t(:, 2);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by