MATLAB: How to import an audio file

audioMATLABscript

Hi,
I would like to write that in the command windows:
load handel.mat
filename = 'handel.mp3';
audiowrite(filename,y,Fs);
clear y Fs
[y,Fs] = audioread('handel.mp3');
but i don't know to import my audio file 'handel.mp3' from my hard disk to Matlab.
Can you help me?
thanks

Best Answer

Use audioread. Why do you think that your code is not working? What do you expect to happen?