when I load a mat file, it shows" unable to read file, no such file or directory"
24 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I recently installed a matlab 2014(a), but when I try to load my old mat or m files, the command window shows: Error using load Unable to read file '.mat': no such file or directory.
2 Commenti
nour ben farhat
il 3 Set 2021
Unable to read file '..\Meteomatics\Data\MeteomaticsData_20170624.mat'. No such file or directory.
Qaiser Javed
il 1 Gen 2022
change your current directory to that location where your old file is placed or copy that file to current directory.
Risposte (4)
Azzi Abdelmalek
il 17 Ago 2014
Check if your file is in the current folder
dir your_file_name.mat
2 Commenti
Maria Sheeba
il 27 Dic 2016
Yes..It was in the correct directory..Still it shows this kind of error.Now, what is the solution for it?
Thumree Sarkar
il 7 Nov 2017
Sometimes the path problem happens. I use
addpath(fullfile('your_path'));
Harvy Jack
il 6 Mag 2020
Most likely, the problem is that you're using a relative file path to open the file, but the current working directory isn't set to what you think it is.
It's a common misconception that relative paths are relative to the location of the python script, but this is untrue. Relative file paths are always relative to the current working directory, and the current working directory doesn't have to be the location of your python script.
You have three options:
- Use an absolute path to open the file.
- Generate the path to the file relative to your python script.
- Change the current working directory before opening the file
Maaz Ali Khan
il 29 Gen 2019
Hey
Did you find out the solution of this problem?
i have also faced that type of problem.
1 Commento
Thumree Sarkar
il 30 Gen 2019
Can you please specify the problem? Otherwise see the comments to the thread hope that can help.
Wafaa Bdr
il 7 Feb 2020
can you please explain to us how did you fixe this problem, i'm at the same situation as yours.
thank you
0 Commenti
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!