read xlsx file with headers and mixed double and character data into a matlab table inside a matlab program

36 views (last 30 days)
I cannot find a way to read in the data with headers and all data types into memory. Clearly it can be done: I can click a few buttons at the top and do it. However, I want to do it in a program.
xlsread seems to be associated with matrices and readtable seems to be associated with tables. However, the document on how to do what I want doesn't seem to be in the readtable documentation.
Thanks in advance for any help. A suggestion: why can't matlab include the commands it executes to perform "clicks" in the command window? This would answer my question immediately. After all, it is straightforward to import this data using the import buttons at the top.
  1 Comment
Peter Perkins
Peter Perkins on 3 Mar 2017
Richard, can you be more specific about what's not working with readtable? (Also, readtable has had behaviors added over the years, so it would be good to say what version of MATLAB you're using.)

Sign in to comment.

Answers (1)

Sid Jhaveri
Sid Jhaveri on 3 Mar 2017
Hi Richard,
1) You can use the Import Tool to also generate MATLAB scripts and functions. You can then use/modify it to use the same/similar functionality programmatically.
2) You can also achieve this by using " readtable " function. While using " readtable " function, you will have to specify that you would like to get the header and the type of data each column contains. For example,
readtable('test.xls','Format','%s%s%u%f%f%s','ReadVariableNames',true);

Community Treasure Hunt

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

Start Hunting!