Unable to read data from text file in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
clc;
clear all;
close all;
fid = fopen('eeg.txt');
A = fscanf(fid,'%f');
fclose(fid);
when I am trying for run the code I got the following error:
Error using fscanf
Invalid file identifier. Use fopen to generate a valid file identifier.
Error in eeg (line 5)
A = fscanf(fid,'%d');
Kindly help me to get rid of this issue.
1 件のコメント
回答 (1 件)
Bora Eryilmaz
2023 年 1 月 12 日
編集済み: Bora Eryilmaz
2023 年 1 月 12 日
The file your are looking for is probably not there, or at least, not on the MATLAB path. See what fid is: if it is -1, then you haven't really opened the file, which would result in the error that you are observing:
fid = fopen('badfile.txt')
fscanf(fid, '%f')
To double check if the file is accessible by MATLAB, run:
exist('eeg.txt', 'file')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Import and Export についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!