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

31 ビュー (過去 30 日間)
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 件のコメント
Peter Perkins
Peter Perkins 2017 年 3 月 3 日
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.)

サインインしてコメントする。

回答 (1 件)

Sid Jhaveri
Sid Jhaveri 2017 年 3 月 3 日
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);

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by