MATLAB: What function to display the result of wavread

audio

[x,fs] = wavread('E:\Example\tes.wav');
if i use plot(x); there will be a graph of sine wave.
But the display i wanted is in array of the data/sample data or something?
Anyone know what function should i use?

Best Answer

Do you mean like
x(1:100,1)
to display the numeric values of the first 100 samples?