Datetime coloumn in a matrix of double

6 ビュー (過去 30 日間)
Andrea Sbaragli
Andrea Sbaragli 2021 年 5 月 12 日
コメント済み: Stephan 2021 年 5 月 12 日
I start from this matrix A = mx 4 where
1- epoch time in nanosec
2- number double
3- number double
4- number double
Through this function "datetime(T1(i,1),'ConvertFrom','epochtime','TicksPerSecond',1e9,'Format','dd-MMM-yyyy HH:mm:ss.SSSSSSSSS')" I created an array mx1 where I converted the epoch time to date time
At this point I m looking to create the same matrix as before replacing the first coloumn with the new created vector but it returns me an error because date type are not equal. How to do that?

採用された回答

Stephan
Stephan 2021 年 5 月 12 日
編集済み: Stephan 2021 年 5 月 12 日
You can not mix data types in arrays - use a table or a timetable to do this. In your case the array2table or array2timetable might be useful.
  2 件のコメント
Andrea Sbaragli
Andrea Sbaragli 2021 年 5 月 12 日
Ok it works in this way but afterward I cannot operate anymore in values inside. What do you suggest? it is more convenient keep separate them?
Stephan
Stephan 2021 年 5 月 12 日
You access table elements using this notation:
A{:,1} % all rows of column 1
A{1:5,4} % rows 1...5 of column 4

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by