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 个评论
另请参阅
类别
在 Help Center 和 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!