help me plis im using matlab 2018a
Show older comments
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')
Answers (2)
Steven Lord
on 27 Apr 2020
Edited: Steven Lord
on 27 Apr 2020
0 votes
The wavplay function was removed in release R2014a. The Release Notes recommends using audioplayer and play instead.
Ameer Hamza
on 27 Apr 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.
Categories
Find more on Audio and Video Data in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!