How to convert xls to mat file ?
Afficher commentaires plus anciens
I want to convert xls file to mat file
4 commentaires
Kan-Hua
le 4 Mar 2014
To convert a xls file to a mat file, you need to decide the data structure. What Matlab data structure do you want to use for storing your xls file? numerical array? cell array? or table?
Surendar Kumar Kodali
le 18 Déc 2019
need the table structure .
Walter Roberson
le 18 Déc 2019
Use readtable() to get a table structure.
Réponses (3)
ES
le 4 Mar 2014
%get the values in the Excel using xlsread.
[num,txt,raw] = xlsread(filename,sheet,xlRange);
%combine data as you want:
AllData={txt;num};%as you want
%save in mat file
save(matfileName,'AllData');%In your matfile name
3 commentaires
deep
le 13 Mar 2015
This helped me :)
Andreas Goser
le 16 Mar 2015
Then vote it up :-)
Tuffahatul Ummah
le 21 Sep 2016
AllData={txt;num};%as you want what txt and num mean? i don't have clue for what must I fill it
Andreas Goser
le 4 Mar 2014
0 votes
As of the complexity of what can be in an XLS file, the way to go is to import with XLSREAD, probably postprocess and then write the MAT file with SAVE.
1 commentaire
aman slamaa
le 20 Avr 2017
how write Andreas? please type your steps
sagar
le 4 Mar 2014
0 votes
Catégories
En savoir plus sur Workspace Variables and MAT Files dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!