how to read file

6 次查看(过去 30 天)
NGR MNFD
NGR MNFD 2023-11-13
评论: Mathieu NOE 2023-11-13
I have a data in the form of a picture below, in each of the six files with the extension .csv, I get the error as below. What Matlab code do you suggest?
Unable to find file or directory 'human1_antalgic1_SkeletonData1'.
c = 'C:\Users\HAMSHARI\Documents\MATLAB\movementdisorder';
files = dir(fullfile(c,'*','*Skeleton*.csv'));
n = numel(files);
DATA = cell(n,1);
for k=1:n
str = fullfile(files(k).folder, files(k).name);
DATA{k} = readmatrix(str);
end
for i= 1:10
for j = 1:20
str = sprintf('human%d_normal%d_SkeletonData%d', [i j]);
data = readmatrix(str);
end
end
  1 个评论
Mathieu NOE
Mathieu NOE 2023-11-13
seems to me (according to the pic) your path should end with \data whereas in your code it ends with \movementdisorder
therefore the error msg

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by