how to read file
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
NGR MNFD
el 13 de Nov. de 2023
Respondida: Manish
el 27 de Dic. de 2024
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1538030/image.jpeg)
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
0 comentarios
Respuesta aceptada
Manish
el 27 de Dic. de 2024
Hi,
I understand that you're facing a path mismatch error.
The path given as 'c' does not match the picture, as the required files are in the data folder.
To ensure the correct path, copy the path up to the data folder from the file explorer and paste it into the value of 'c'. This should resolve the error.
Hope this helps!
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!