MATLAB: Save Audio

How to write save audio in matlab ?

Best Answer

Look at the help for:
wavwrite.m and auwrite.m
If you are going to work with the audio in MATLAB, you can just save it as a .mat file with save
If you have the DSP System Toolbox, you can use dsp.AudioFileWriter, which gives you a couple more format than .wav
Related Question