New Reply

Playing a Music File from Matlab

 
Share Thread Thread Tools
Sep30-11, 05:43 PM   #1
 

Playing a Music File from Matlab


I would like to run a calculation so that when it has converged, a song will play.... to alert me from the other room (for example).

http://www.mathworks.co.uk/help/tech...dioplayer.html

I found this but can't quite put it together? Their example was:

Examples

Load and play a sample audio file of Handel's "Hallelujah Chorus:"

load handel;
player = audioplayer(y, Fs);
play(player);

I'm not clear on this..... Okay, so any explanations greatly appreciated; also, you are welcome to suggest a tune to play once convergence is met (its a non-linear least squares problem, maybe it will inspire the tune :O)
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Galaxies fed by funnels of fuel
>> The better to see you with: Scientists build record-setting metamaterial flat lens
>> Google eyes emerging markets networks
Oct1-11, 02:06 AM   #2
 
Recognitions:
Gold Membership Gold Member
sound(y,Fs)

where y is the wavefile you want to play and Fs is the sample rate.

you can write your own music:
http://www.lifeorange.com/MATLAB/MATLAB_music.htm

or you can load the handel edxample that comes with matlab, which comes with its own "y" and "Fs"

load handel.mat;
sound(y, Fs);
New Reply
Thread Tools


Similar Threads for: Playing a Music File from Matlab
Thread Forum Replies
Playing Music to Plants Biology 8
Help plotting a wav file as it is playing? Math & Science Software 0
Everyone else is playing music, I got something better General Discussion 3
What music are you playing right now? General Discussion 23
Music playing General Discussion 24