フィルターのクリア

why "datestr" in matlab and date format cell in excell doesnt match?

1 回表示 (過去 30 日間)
saharsahar
saharsahar 2013 年 6 月 12 日
Hi all, I have a date number , say 40667. When I am using datestr in matlab , it gives me 5 May, however I have the same number 40667 in excel sheet, when I use the date cell format(by clicking right->format cells-> date) , it gives me 4 May. However as far as I know the 4 May should be the right one. does anybody know why Matlab does not gives me the same result? and why there is mismatch between Matlab and Excel? Appreciated !

採用された回答

per isakson
per isakson 2013 年 6 月 12 日
編集済み: per isakson 2013 年 6 月 12 日
Hint:
>> datestr( 40667, 'yyyy-mm-dd HH:MM:SS' )
ans =
0111-05-05 00:00:00
Start of time with Matlab is year 0 and with Excel 1900. See documentation.

その他の回答 (1 件)

saharsahar
saharsahar 2013 年 6 月 12 日
Thanks per isakson. I got that point and I searched and found "x2mdate" function which will solve the date conversion for me. But now I have problem using this function . Actually I am reading dates from Excel sheet using xlsread. the result will be cell or double : [num,txt,data]=xlsread(filepath); where num is double and data is cell. however the "x2mdate" gives me error for using cell or double formats:
here is my code:
[num,txt,data]=xlsread(filepath);
xx=num(1:end,19);
MATLABDate = x2mdate(xx,1);
and it gives me following error:
Undefined function 'x2mdate' for input arguments of type 'double'
Any help would be appreciated!
  4 件のコメント
per isakson
per isakson 2013 年 6 月 15 日
There is a contribution in the File Exchange, xlsdate, which promises to help.
saharsahar
saharsahar 2013 年 6 月 23 日
Great ! Thank you very much . It works perfectly !

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by