How to convert .wav to formula?
In scilab I can write like:
t=soundsec(0.5);
s=[sin(2*%pi*440*t)];
savewave('foo.wav', s);
and by this convert formula to .wav.
But how can I convert .wav to formula? If I use
analyze(loadwave('foo.wav'));
I only got graphic? What to do?