フィルターのクリア

datenum on array of values - specifying the format

2 ビュー (過去 30 日間)
dormant
dormant 2021 年 10 月 15 日
コメント済み: Lei Hou 2021 年 10 月 18 日
I can't seem to specify the format for datenum when I passi an array of values.
Here is a snippet of my code:
formatIn = 'dd/mm/yyyy HH:MM';
X = readtable( fileRain );
datimR = datenum(X.DateTime_LT_,formatIn);
This returns an error:
Error using datetime/datenum
Too many input arguments.
Error in plot_rsam_rain (line 12)
datimR = datenum(X.DateTime_LT_,formatIn);
It works fine when I don't specify the format in the call to datetime, but the values are all wrong as it assumes 'mm/dd/yyyy'.
Any suggestions how I can get this to work.
  1 件のコメント
Lei Hou
Lei Hou 2021 年 10 月 18 日
Hi Dormant,
May I know why you want to convert datetime to datenum? Now, it is more recommended to use the morden datatype datetime than datenum. Actually, datenum is put into discourage use.
Thanks,
Lei

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

回答 (1 件)

Cris LaPierre
Cris LaPierre 2021 年 10 月 15 日
編集済み: Cris LaPierre 2021 年 10 月 15 日
You do not need to enter a format if your data is already a datetime. The 'FormatIn' flag should only be used if your date is a string.
  • DateNumber = datenum(DateString,formatIn)
DateNumber = datenum(t) converts the datetime or duration values in the input array t to serial date numbers.

カテゴリ

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

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by