How to read time as string data from excel file
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Yasuyuki Hamanaka
am 24 Mai 2021
Kommentiert: Yasuyuki Hamanaka
am 24 Mai 2021
I used readtable to read time from excel spread sheets. The time was converted to double like e.x. But I want to read time as original form. How does read time as string?
e.x 10:11:09 AM => 0.42858
0 Kommentare
Akzeptierte Antwort
Yutaka Yamada
am 24 Mai 2021
How about the below code if you want to use readtable?
opts = detectImportOptions('readTime.xlsx');
opts.VariableTypes = 'datetime';
T = readtable('readTime.xlsx', opts);
for i = 1:3
a = T{i, 1};
a.Format = 'HH:mm:ss a';
end
I've attached the Excel file that I've used for this test also.
3 Kommentare
Weitere Antworten (1)
Sulaymon Eshkabilov
am 24 Mai 2021
Hi,
You should try using xlsread() in this case. In fact, xlsread is slower than readtable().
Then you can employ datenum() and datestr() if necessary.
Good luck.
Siehe auch
Kategorien
Mehr zu Calendar finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!