Using MacOS Catalina and can't import any file at all in MATLAB

16 visualizaciones (últimos 30 días)
Ida
Ida el 1 de Nov. de 2020
Comentada: Walter Roberson el 6 de Nov. de 2020
I'm fairly inexperienced at Matlab and I'm not able to import the .xlsx or .txt files I need, whenever i try I'm just reciving errors such as line 198 and line 157 stating that Matlab is unable to find or open the files i try to import and that I should check the filename and file permissions. What i have tried/checked:
  • Updated Matlab to MATLAB_R2020b
  • Checked my preferences in Security and Privacy
  • data = readmatrix("filename.txt")
  • data = readatable('filename.xlsx')
  • exist('filename'), % I get 0
I really don't know what more I can try, but after searching around a bit it seems like more people are having problems with Matlab and OS not cooperating properly. Could anyone please help? Thank you.
  2 comentarios
Ameer Hamza
Ameer Hamza el 1 de Nov. de 2020
Can you show the complete error message?
Walter Roberson
Walter Roberson el 1 de Nov. de 2020
Editada: Walter Roberson el 1 de Nov. de 2020
is it possible that you are getting information about the filename from the user, or by using dir(), and you are storing the name of the file in a variable named filename and then you are trying to read from "filename.txt" as a quoted string? If you have a variable that is holding the file name then you need to pass the variable to the reading routine instead of "filename"
For example
data = readmatrix(filename);
Or
ff = [filename '.txt'];
data = readmatrix(ff) ;

Iniciar sesión para comentar.

Respuestas (1)

drummer
drummer el 1 de Nov. de 2020
Editada: drummer el 1 de Nov. de 2020
Did you add the paths the files are placed so MATLAB can see them?
You can set the path by clicking in the refered button in environment section under Home tab.
Trying only to read the filename if it is not indicated to MATLAB where it is won't work.
Cheers
  2 comentarios
Lee Vousden
Lee Vousden el 6 de Nov. de 2020
I have the same (or similar) problem under Windows. I copy the path from file manager, append \filename and put single quotes around it to get
data = readmatrix('C:\User\Documents\Results.txt')
but all I get back is
Error using readmatrix (line 157)
Unable to find or open 'C:\User\Documents\Results.txt')
Then I'm advised to check permissions and so on but it's just a txt file I made with notepad++ a few minutes before.
Walter Roberson
Walter Roberson el 6 de Nov. de 2020
There is usually a username as part of MS Windows paths.

Iniciar sesión para comentar.

Categorías

Más información sobre Environment and Settings 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!

Translated by