readcell command undefined?

30 ビュー (過去 30 日間)
Amit Ifrach
Amit Ifrach 2021 年 10 月 13 日
コメント済み: Mathieu NOE 2021 年 10 月 14 日
לק"י
Hi guys,
I try to use readcell command, but it seems it is not recognized by matlab. i thought it may be an external function which needs to be downloaded, but as far as I could tell, it an official function of mathworks.
the code line:
tmp = readcell(fullfile(fileDir, fileNames_sorted{k}));
the error I get:
>> readcell(fullfile(fileDir, fileNames_sorted{k}))
Undefined function or variable 'readcell'.
Thanks!
Amit.

採用された回答

Mathieu NOE
Mathieu NOE 2021 年 10 月 13 日
hello again Amit
i think I recognize this line of code... :)
I believe readcell was introduced around R2018 - so if you have an older release I changed the code from readcell to csvread which is much older but still working - there are probably other options also like csvimport
NB : with csvread make sure you have the right amount of header lines defined
% tmp = readcell(fullfile(fileDir, fileNames_sorted{k})); % original code
tmp = csvread(fullfile(fileDir, fileNames_sorted{k}),1); % 1 headerline skipped / csvimport should also work
  3 件のコメント
Amit Ifrach
Amit Ifrach 2021 年 10 月 14 日
編集済み: Amit Ifrach 2021 年 10 月 14 日
לק"י
Hi mathieu, helping me again :)
thanks mate!
Mathieu NOE
Mathieu NOE 2021 年 10 月 14 日
My pleasure !

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by