Hello, i have a [365, 24] table reporting values per hour for each day of the year.
How can I assign days names to all 365 rows ('Monday','Tuesday'...) without writing 365 names with 'RowNames'?

댓글 수: 1

Stephen23
Stephen23 2023년 12월 4일
There is only a small chance that some random year will start on a Monday.
To obtain the correct days of the week you should use DATETIME.

댓글을 달려면 로그인하십시오.

 채택된 답변

Matt J
Matt J 2023년 12월 4일
편집: Matt J 2023년 12월 4일

0 개 추천

The row names of a table cannot be non-unique, so having the names of the 7 days of the week repeat 52 times would not generate legitimate input for RowNames. However, you can make a string column of the days of the week as below and prepend it to your table as an additional (but ordinary) table column.
names=repmat(["Monday";"Tuesday";"Wednesday";"Thursday";"Friday";"Saturday";"Sunday"],52,1);
names=[names;names(1)]
names = 365×1 string array
"Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday" "Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday" "Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday" "Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday" "Sunday" "Monday" "Tuesday"

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Tables에 대해 자세히 알아보기

제품

릴리스

R2022b

태그

질문:

2023년 12월 4일

댓글:

2023년 12월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by