Reading a table in excel

1 回表示 (過去 30 日間)
Alexandra Philip
Alexandra Philip 2020 年 8 月 12 日
コメント済み: Walter Roberson 2020 年 8 月 12 日
I am having some trouble with reading a table in excel and then extracting specific rows.
I first use:
filenameEGI='Copy of EGI Yield Data July 2020 7_30_20.xlsx'
fileread=readtable(filenameEGI)
columnData=fileread(2056:2098,:)
In effort to read rows 2056 to 2098. However in certain columns NaN is bein displayed and I would like whatever was in that excel cell to display instead.
Where the NaN displayed, in the excel cell it displayed words and file folder links.
Any suggestions or application of corrections?
  4 件のコメント
Walter Roberson
Walter Roberson 2020 年 8 月 12 日
table does support characters, but csvread() does not.
Columns that contain a mix of numbers and text will generally be detected as text, but that depends upon the release and the fraction of text. Older releases that did not automatically use detectImportOptions were more likely to guess that a file with leading numbers would never have text; detectImportOptions goes a better job of figuring out columns.
Walter Roberson
Walter Roberson 2020 年 8 月 12 日
You could consider using readcell() : the entries that can be converted to numeric will be converted, but will be left in individual cells.
You can then use cellfun(@isnumeric) or similar to locate non-numeric entries.

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

回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by