why am I getting this error ? Any help please
古いコメントを表示
for i = 1:length(file_list)
filename = file_list(i);
data_in = readtable([path_n filename]);
Error using readtable
"filename" must be a string scalar or
character vector.
Error in READ_MULTI_FILES (line 10)
data_in = readtable([path_n filename]);
採用された回答
その他の回答 (1 件)
Walter Roberson
2022 年 8 月 9 日
filename = file_list{i};
data_in = readtable( fullfile(path_n, filename) );
5 件のコメント
Stephen Tete
2022 年 8 月 9 日
Stephen Tete
2022 年 8 月 9 日
Walter Roberson
2022 年 8 月 9 日
[file_list, path_n] = uigetfile('*.Cmn','Grab the files you want yo process','Multiselect', 'on');
if isnumeric(file_list)
return; %user cancel
end
file_list = cellstr(file_list);
for i = 1:length(file_list)
filename = file_list{i};
data_in = readtable(fullfile(path_n, filename));
subject_id(1,i) = string(filename(1:end-4));
VTEC = data(:,9);
STEC = data(:,8);
time = hours(:,2);
[H,M,S] = hms(time);
scatter(H,VTEC, 'k', H,STEC,'o');
hold on
end
leg = reshape(subject_id + ["_V"; "_S"], 1, []);
legend(leg)
Stephen Tete
2022 年 8 月 10 日
編集済み: Walter Roberson
2022 年 8 月 10 日
カテゴリ
ヘルプ センター および File Exchange で Timetables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!