From: Walter Roberson on
st wrote:

> Then i tried with
> [y, Fs, nbits] = wavread('test1.wav');
> fprintf (y,Fs,nbits);
>
> but i got error again with the fprintf statement.

For the moment, the simplest way to proceed would be to remove the
semi-colon from the end of your assignment statement, and delete the
fprintf() statement. Without the semi-colon, the values will all be
printed out.

Warning: displaying the data for the sound itself could go on for many
many many pages!! You should re-think why you are wanting to display the
audio data in numeric mode.