Invalid file identifier. Use fopen to generate a valid file identifier.
조회 수: 1 (최근 30일)
이전 댓글 표시
How to fix this error
Error using fread
Invalid file identifier. Use fopen to generate a valid file identifier.
Error in ReadRSS (line 32)
buff = fread(fileID,MAGICNUMBERLENGTH,'*char')';
Error in Convmod_AkiRich (line 90)
[wavfilt, wavhdr]=ReadRSS('wavfilt.rss');
댓글 수: 0
답변 (1개)
Ameer Hamza
2020년 10월 20일
Try passing file ID to ReadRSS
fid = fopen('wavfilt.rss');
[wavfilt, wavhdr]=ReadRSS(fid);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!