I am having this error. Could you help?

16 vues (au cours des 30 derniers jours)
Billy Grizz
Billy Grizz le 9 Juil 2019
Commenté : Jan le 26 Mai 2021
Error using fopen Unable to find file. Ensure file exists and path is valid.
Error in dlmread (line 120)
[fid, theMessage] = fopen(filename);
Error in Self_Mob_TTB_Code_7_9_19 (line 81)
TTB=dlmread([data_
  3 commentaires
Anuradha Gonjari
Anuradha Gonjari le 26 Mai 2021
baseFileName = 'C:\Users\Admin\Desktop\Pritee\apg\download.jpg';
fullFileName = fullfile(pwd,baseFileName);
grayImage = imread(fullFileName);
Jan
Jan le 26 Mai 2021
baseFileName does contain a complete path already. Then appending it to the current folder creates a file path, which does not exist.
FileName = 'C:\Users\Admin\Desktop\Pritee\apg\download.jpg';
% fullFileName = fullfile(pwd,baseFileName); % Nope
grayImage = imread(FileName);

Connectez-vous pour commenter.

Réponses (2)

Jan
Jan le 9 Juil 2019
The error message is clear: You provide a name, which is not an existing file. What is exactly hidden in the omitted rest of:
TTB=dlmread([data_ ... ?
  3 commentaires
Billy Grizz
Billy Grizz le 9 Juil 2019
Is there a way to have it give me the name it can not find so I can trouble shoot more?
Jan
Jan le 9 Juil 2019
@Billy: Use the debugger to examine problems. Type this in the command window:
dbstop if error
Then run the code again. When Matlab stops at the error, check the name of the file.
Actually I'd assume, that you can find the contents by reading the code, most of all this line:
TTB=dlmread([data_ ...
If you show us at least the complete line, a more precise suggestion might be possible.

Connectez-vous pour commenter.


Star Strider
Star Strider le 9 Juil 2019
Modifié(e) : Star Strider le 9 Juil 2019
It is likely better to use the fullfile function than to cd to the path.
I would define ‘keyfile’ as:
keyfile = fullfile(pathname, filename);
and completely remove the cd calls.
EDIT —
If you hare having problems finding the file, You will have to use the operating system to find it if it is not on your MATLAB search path. In Windows, this is the File Explorer utility.

Catégories

En savoir plus sur Low-Level File I/O dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by