help me plis im using matlab 2018a
Afficher commentaires plus anciens
y1=audioread('namafile.wav');
Fs=10000;
wavplay(y1,Fs,'async')
>> PSD312
Undefined function or variable 'wavplay'.
Error in PSD312 (line 3)
wavplay(y1,Fs,'async')
Réponses (2)
Steven Lord
le 27 Avr 2020
Modifié(e) : Steven Lord
le 27 Avr 2020
0 votes
The wavplay function was removed in release R2014a. The Release Notes recommends using audioplayer and play instead.
Ameer Hamza
le 27 Avr 2020
0 votes
As Steven mentioned, you can use audioplayer. Or if you have several functions already using wavplay. Then you can use this FEX submission: https://www.mathworks.com/matlabcentral/fileexchange/71798-wavplay to preserve backward compatibility. This function also internally call audioplayer.
Catégories
En savoir plus sur Audio and Video Data dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!