how to find certain values in cells ?

1 回表示 (過去 30 日間)
Leonardo Wayne
Leonardo Wayne 2016 年 4 月 18 日
コメント済み: Ghost 2016 年 4 月 20 日
see attached.
I am using xlsread to load data from an xls file into matlab as a cell. I would like to return all the cell values in the first column starting from row 15 until the first NaN into a variable called "List"(of type cell or integer preferably).

採用された回答

Ghost
Ghost 2016 年 4 月 18 日
Define your sheet and xlrange something similar to this
for f = 1:end;
A(:,f) = ALL(:,f);
sheet = 1;
xlRange = 'A2';
xlswrite(Exel_filename,A,sheet,xlRange)
end
  3 件のコメント
Leonardo Wayne
Leonardo Wayne 2016 年 4 月 18 日
never mind that I have found a way around it :)
Ghost
Ghost 2016 年 4 月 20 日
Will be good if you can share how did you solve it.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by