How to convert xls to mat file ?

I want to convert xls file to mat file

4 Kommentare

Kan-Hua
Kan-Hua am 4 Mär. 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?
s k
s k am 20 Jul. 2016
Bearbeitet: s k am 20 Jul. 2016
yes numerical array
Surendar Kumar Kodali
Surendar Kumar Kodali am 18 Dez. 2019
need the table structure .
Walter Roberson
Walter Roberson am 18 Dez. 2019
Use readtable() to get a table structure.

Melden Sie sich an, um zu kommentieren.

Antworten (3)

ES
ES am 4 Mär. 2014

37 Stimmen

%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 Kommentare

deep
deep am 13 Mär. 2015
This helped me :)
Andreas Goser
Andreas Goser am 16 Mär. 2015
Then vote it up :-)
Tuffahatul Ummah
Tuffahatul Ummah am 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

Melden Sie sich an, um zu kommentieren.

Andreas Goser
Andreas Goser am 4 Mär. 2014

0 Stimmen

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.
sagar
sagar am 4 Mär. 2014

0 Stimmen

I have already xls file with 6 column and it contain numeric and string data. So I want to convert into mat file..

Kategorien

Gefragt:

am 4 Mär. 2014

Kommentiert:

am 18 Dez. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by