when I load a mat file, it shows" unable to read file, no such file or directory"
25 views (last 30 days)
Show older comments
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 Comments
nour ben farhat
on 3 Sep 2021
Unable to read file '..\Meteomatics\Data\MeteomaticsData_20170624.mat'. No such file or directory.
Qaiser Javed
on 1 Jan 2022
change your current directory to that location where your old file is placed or copy that file to current directory.
Answers (4)
Azzi Abdelmalek
on 17 Aug 2014
Check if your file is in the current folder
dir your_file_name.mat
2 Comments
Maria Sheeba
on 27 Dec 2016
Yes..It was in the correct directory..Still it shows this kind of error.Now, what is the solution for it?
Thumree Sarkar
on 7 Nov 2017
Sometimes the path problem happens. I use
addpath(fullfile('your_path'));
Harvy Jack
on 6 May 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
on 29 Jan 2019
Hey
Did you find out the solution of this problem?
i have also faced that type of problem.
1 Comment
Thumree Sarkar
on 30 Jan 2019
Can you please specify the problem? Otherwise see the comments to the thread hope that can help.
Wafaa Bdr
on 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 Comments
See Also
Categories
Find more on File Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!