Convert Excel to Timetable
Mostrar comentarios más antiguos
I have a question for my uni project. I am pretty new to matlab as well.
So i am reading an excel sheet with following code:
function Auswertung3()
[filename, pathname] = uigetfile('*.xlsx', 'Bitte Datei aussuchen');
[Data, ~, rawData] = xlsread(fullfile(pathname, filename));
Now i want to convert that excel file into a timetable? Can someone help me with that?
I attached the excel sheet as well, so the format should be the same just as timetable, and it should save the timetable in the workspace.
Thanks in advance!!
Respuestas (2)
Star Strider
el 21 de Feb. de 2021
0 votos
‘I attached the excel sheet as well ...’
Not yet.
Benedikt Skurk
el 21 de Feb. de 2021
0 votos
4 comentarios
Walter Roberson
el 21 de Feb. de 2021
readtable() and then table2timetable()
Benedikt Skurk
el 21 de Feb. de 2021
Walter Roberson
el 22 de Feb. de 2021
t = readtable('Leit... xlsx') ;
tt = table2timetable(t) ;
Benedikt Skurk
el 22 de Feb. de 2021
Categorías
Más información sobre Spreadsheets en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!