フィルターのクリア

How to import excel sheet with Dates/Time in the first column

8 ビュー (過去 30 日間)
Giancarlo Meccariello
Giancarlo Meccariello 2020 年 10 月 10 日
コメント済み: Walter Roberson 2020 年 10 月 12 日
Hello,
In the first column I have the dates written as 01.12.2019 00:00 in the other column I have datas as floating numbers.
If I import the excel sheet with "Data=xlsread('Filename') " I don't get the dates and times in the first column instead some random floating numbers.
I need the dates to make a graph with them on the X axis.
please help
  2 件のコメント
Sudhakar Shinde
Sudhakar Shinde 2020 年 10 月 10 日
can you add example data cloumn here.
Giancarlo Meccariello
Giancarlo Meccariello 2020 年 10 月 10 日
A B C
1 01.12.2019 00:00 48 20
2 01.12.2019 00:15 47 21
3 01.12.2019 00:30 49 20.5

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

回答 (2 件)

Sudhakar Shinde
Sudhakar Shinde 2020 年 10 月 10 日
  1. try
[num,txt,raw] = xlsread(filename)
2. check also readtable, readmatrix, or readcell
  2 件のコメント
Giancarlo Meccariello
Giancarlo Meccariello 2020 年 10 月 10 日
doesn't work.
I get 3 files
first just with numbers -> same as I had
second just text -> date and time is not written as text
and third is kinda mix between 1st and 2nd.
this is the format in excel of my date and time "TT.MM.JJ hh:mm"
Sudhakar Shinde
Sudhakar Shinde 2020 年 10 月 12 日
[~,~,raw] = xlsread(filename);
%Extract date column if date is 2 nd column in excel
Date = raw(:,2);
%ignore Date header
Date = raw(2:end,2);

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


Giancarlo Meccariello
Giancarlo Meccariello 2020 年 10 月 12 日
I found a solution.
basically when the format for the date in excel is TT.MM.JJ hh:mm and you import the excel as a matrix you get the serial number of the date. that's something linke 44380.
then you have to add a constant, that's the deviation between matlab and excel in the serial number of the dates
date_matrix=DATA(:,1) + 693960
and finally it has to be converted to date
date_for_plots = datetime(date_matrix,'ConvertFrom','datenum')
Now graphs can be plotted with this vector for the X-axis
  2 件のコメント
Sudhakar Shinde
Sudhakar Shinde 2020 年 10 月 12 日
Yup. You can also look for datestr
Walter Roberson
Walter Roberson 2020 年 10 月 12 日
date_for_plots = datetime(DATA(:,1), 'convertfrom', 'excel');

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

カテゴリ

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

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by