フィルターのクリア

Converting a Column to Numeric for Date/Time Format

4 ビュー (過去 30 日間)
Sarah Nolt-Caraway
Sarah Nolt-Caraway 2021 年 3 月 23 日
コメント済み: Adam Danz 2021 年 3 月 23 日
I am trying to convert the first column to a character string, so I can split the character string values to create a Date/Time format to sort data later on. When I try to isolate the column in Matlab, it skips the first column and uses only the second column. Can anyone help me isloate the first column?
This is what I have tried so far
T = xlsread('Vibes.xlsx');
C = str2double(T(:,1));
T = xlsread('Vibes.xlsx');
C = T(:,1);

採用された回答

Steven Lord
Steven Lord 2021 年 3 月 23 日
If you use the Import Data tool (in the Variable section on the Home tab of the toolstrip) you can import the data directly as a datetime array. Just specify the format. If you have multiple of these files in the same format to import, you could even create a script or function to automate the import process for the second and later files (and to see the code MATLAB used to import the data so you can learn from it.)
  3 件のコメント
Sarah Nolt-Caraway
Sarah Nolt-Caraway 2021 年 3 月 23 日
The underscore between the Date and Time in the first column is what is causing this error, hence why I need to separate them
Adam Danz
Adam Danz 2021 年 3 月 23 日
They underscore can be included in the input format.
date = '2020-09-11_04:11:50.648000';
datetime(date,"InputFormat",'yyyy-MM-dd_hh:mm:ss.SSSS')
ans = datetime
11-Sep-2020 04:11:50

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by