vote up 5 vote down star

What is the simplest way to programmatically export Excel data to Matlab?

flag

5 Answers

vote up 6 vote down check

If you are running Matlab on Windows with Excel installed, try XLSREAD.

link|flag
vote up 0 vote down

As has been said, XLSREAD is the right function for the job. On a non-Windows system it will also work without Excel installed. However, it supposedly lacks some of Excels advanced features.

link|flag
vote up 0 vote down

The xlsread function that Jouni mentioned works well. If you want some finer control over Excel consider using ActiveX to interact with the Excel file. Check out the MATLAB help for http://www.google.ca/search?hl=en&q=matlab+activex&btnG=Google+Search&meta=">COM client support. I've used this approach to create Excel files but you could also use it to implement advanced programmatic reading of files.

link|flag
vote up 1 vote down

For a bit of $$$, you can get the MATLAB add-on Excel Link, which provides a nice clean interface for transferring data back and forth between the two programs.

link|flag
vote up 4 vote down

If there's not much text annotation in the Excel file, save it as a csv, then use the MATLAB function csvread.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.