Invalid file identifier. Use fopen to generate a valid file identifier.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Ameer Hamza
il 20 Ott 2020
Try passing file ID to ReadRSS
fid = fopen('wavfilt.rss');
[wavfilt, wavhdr]=ReadRSS(fid);
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!