I am having this error. Could you help?

17 ビュー (過去 30 日間)
Billy Grizz
Billy Grizz 2019 年 7 月 9 日
コメント済み: Jan 2021 年 5 月 26 日
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 件のコメント
Anuradha Gonjari
Anuradha Gonjari 2021 年 5 月 26 日
baseFileName = 'C:\Users\Admin\Desktop\Pritee\apg\download.jpg';
fullFileName = fullfile(pwd,baseFileName);
grayImage = imread(fullFileName);
Jan
Jan 2021 年 5 月 26 日
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);

サインインしてコメントする。

回答 (2 件)

Jan
Jan 2019 年 7 月 9 日
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 件のコメント
Billy Grizz
Billy Grizz 2019 年 7 月 9 日
Is there a way to have it give me the name it can not find so I can trouble shoot more?
Jan
Jan 2019 年 7 月 9 日
@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.

サインインしてコメントする。


Star Strider
Star Strider 2019 年 7 月 9 日
編集済み: Star Strider 2019 年 7 月 9 日
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.

カテゴリ

Help Center および File ExchangeLow-Level File I/O についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by