MATLAB: How do you apply amplitude modulation to a wav file

amplitude modulationwav

I would like to apply AM to a wav file, but I'm not sure how to go about it

Best Answer

Hi,
1st you would need to read the wav file with: [YY, fs] = audioread('MY_wav.wav');
then perform the AM operations with yx = ammod(YY, Fc, Fs). How to do it shown here.
Good luck.
Related Question