Why "File not found"?

I am trying to follow the example of csvread here
filename = 'csvlist.dat';
M = csvread(filename)
I have csvlist.dat file save in my matlab directory.
>> M = csvread('csvlist.dat')
Error using csvread (line 35)
File not found.
I need to import my data, but which to select?
Capture.PNG
Thank you

4 comentarios

Walter Roberson
Walter Roberson el 13 de Feb. de 2019
What shows up for
ls *.dat
Matlaber
Matlaber el 13 de Feb. de 2019
Thanks for your reply.
>> ls *.dat
csvlist.dat
Walter Roberson
Walter Roberson el 13 de Feb. de 2019
I wonder if there is a hidden character? Try
dinfo = dir('*.dat');
filename = {dinfo.name};
fprintf('found file named "%s"\n', filename);
fprintf('The representation of that is: \n');
disp(0 + filename);
and show us the output.
If the output is something different than
99 115 118 108 105 115 116 46 100 97 116
then you might have unusual characters in the name.
Matlaber
Matlaber el 14 de Feb. de 2019
Thanks.
I found the mistake is the file name:
for CSV file
A_B_C.csv --> ABC.csv
for .dat file:
A_B_C.dat -> A_B_C.dat
I written ABC.dat that is why did not work.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Instrument Control Toolbox Supported Hardware en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 13 de Feb. de 2019

Comentada:

el 14 de Feb. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by