Read each columns of xls,csv,... as a matrix

I have got a several CSV and XLS files and I want to read with a MATLAB wizard to read each column as a matrix.
I have tried it with these files and only I got it with csv file.
What is the rule for read these files in this way?

2 Kommentare

Doug Hull
Doug Hull am 2 Feb. 2011
What is happening when you fail? When you say "read as a matrix" do you mean "read as a vector"?
Mtlb Usr
Mtlb Usr am 3 Feb. 2011
Exactly, when I said "read as a matrix" I would want to say "..as a vector".

Melden Sie sich an, um zu kommentieren.

Antworten (3)

the cyclist
the cyclist am 2 Feb. 2011

0 Stimmen

Are you using a Mac? Macs can't read Excel files:
http://www.mathworks.com/support/solutions/en/data/1-2SJUON/index.html?solution=1-2SJUON

1 Kommentar

Davide Ferraro
Davide Ferraro am 3 Feb. 2011
XLSREAD is able to read Excel file also on MAC OS. You won't obtain all the functionalities related to the COM (that's available only on Windows OS) but you will still be able to read the file in basic mode.

Melden Sie sich an, um zu kommentieren.

Davide Ferraro
Davide Ferraro am 3 Feb. 2011

0 Stimmen

To read an Excel file you should use XLSREAD:
The syntax:
[num,txt,raw] = xlsread(filename,range)
allows you to select a specific range. This should be a string with the same format you would use in Excel (e.g. 'B2:B8' to read from cell B2 to cell B8).

Gefragt:

am 31 Jan. 2011

Community Treasure Hunt

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

Start Hunting!

Translated by