help me plis im using matlab 2018a

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
Steven Lord on 27 Apr 2020
Edited: Steven Lord on 27 Apr 2020
The wavplay function was removed in release R2014a. The Release Notes recommends using audioplayer and play instead.
Ameer Hamza
Ameer Hamza on 27 Apr 2020
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.

Products

Tags

Asked:

on 27 Apr 2020

Answered:

on 27 Apr 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!