How do I read (hours) data from the .xlsx file?
5 views (last 30 days)
Show older comments
stelios loizidis
on 10 Feb 2021
Commented: stelios loizidis
on 10 Feb 2021
Hello,
I have the following issue. In a .xlsx file I have in column D hours (format: 00: 00: 00,01: 00: 00, ... 23:00:00). How can I integrate (read) them into the code to use them to plot some graphics I want. Your help is important.
0 Comments
Accepted Answer
Walter Roberson
on 10 Feb 2021
[~,~,ALL_Data]=xlsread('Hours_Data.xlsx');
Hours = days(cell2mat(ALL_Data(2:25,end)));
Hours.Format = 'hh:mm';
Hours
%OR
ALL_Data = readtable('Hours_Data.xlsx');
Hours = days(ALL_Data{:,end});
Hours.Format = 'hh:mm';
Hours
More Answers (1)
KSSV
on 10 Feb 2021
Read about readtable. In here after reading your specify the format of time. Have a look on duration.
7 Comments
See Also
Categories
Find more on Data Import from MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!