Problem in opening and Reading a Binarydata file ??
이전 댓글 표시
% Here is the code for opening the and reading the data file
file='dspCW2datav2.bin';
fid=fopen(file,'r'); %%%%%% fid= -1 ????
format='double';
data=fread(fid,format);% Reading the binary data in the matlab
So , every time running this , i get an error for using fread . But i now figured out that's happening because fid = -1 , hence this is leading to error in fread .
The error is as follows!!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Error using fread
Invalid file identifier. Use fopen to generate a valid file identifier.
Error in suvvi_20201366 (line 21)
data=fread(fid,format);% Reading the binary data in the matlab
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Can someone please help me in getting rid of this error ????
Thankyou,
suvvi
채택된 답변
추가 답변 (1개)
Mario Malic
2020년 8월 1일
fileID = fopen('dspCW2datav2.bin');
A = fread(fileID)
Never tried opening bin files, but this should be working. Function fread does not accept the "format" variable, as you can see from documentation.
댓글 수: 8
Suvvi Kuppur Narayana Swamy
2020년 8월 1일
Mario Malic
2020년 8월 1일
What might be happening is that data is [1x1] and it only accepts one value. -1 is value that denotes end of file, so, probably it has read all the characters from the file with the last one being the -1.
Suvvi Kuppur Narayana Swamy
2020년 8월 1일
Suvvi Kuppur Narayana Swamy
2020년 8월 1일
Mario Malic
2020년 8월 1일
Upload the file.
Suvvi Kuppur Narayana Swamy
2020년 8월 1일
Mario Malic
2020년 8월 1일
편집: Mario Malic
2020년 8월 1일
Your file might not be good, as I downloaded some random bin file from internet and used commands above and it worked. Search for similar topics.
Suvvi Kuppur Narayana Swamy
2020년 8월 1일
카테고리
도움말 센터 및 File Exchange에서 Low-Level File I/O에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!