wavwrite - writes .wav sound file
Utility function to save .wav sound file. wavwrite(y,wavfile) writes a sound file specified by the string wavfile. The data should be arranged with one channel per column. Amplitude values outside the range [-1,+1] are ignored.
wavwrite(y,Fs,wavfile) specifies in Fs the sample rate of the data in Hertz.
A=matrix(1:6,2,3); wavwrite(A/6,TMPDIR+'/foo.wav'); B=wavread(TMPDIR+'/foo.wav'); maxi(abs(A- round(B*6)))