Add specific date time column to every table inside a cell

1 回表示 (過去 30 日間)
BN
BN 2020 年 2 月 10 日
コメント済み: Luna 2020 年 2 月 10 日
Hey all, Here is my cell:
Capture.JPG
I want to add a date-time column for each table. In fact, my date time column is just date.mat. I attached C too. So in the output, I would like a 40 x 32 cell (just like this C), with 336 x 4 tables inside it. I would like to have a date in the front existing column in each table.
Thank you.

採用された回答

Luna
Luna 2020 年 2 月 10 日
編集済み: Luna 2020 年 2 月 10 日
Easiest and fastest way to do it using a cellfun and converting them to a timetable. Here is one line to do it all:
NewCellArray = cellfun(@(x) table2timetable(x,'RowTimes',date),C2LatLon,'uni',false);
Or if you don't want a timetable just a table with a date column you can use below:
NewCellArray2 = cellfun(@(x) addvars(x,date,'Before','lon') ,C2LatLon,'uni',false);
  2 件のコメント
BN
BN 2020 年 2 月 10 日
Thank you
Luna
Luna 2020 年 2 月 10 日
Your welcome ;)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by