필터 지우기
필터 지우기

What function to display the result of wavread?

조회 수: 2 (최근 30일)
I Made
I Made 2013년 2월 25일
[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?

채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 25일
Do you mean like
x(1:100,1)
to display the numeric values of the first 100 samples?
  댓글 수: 3
Walter Roberson
Walter Roberson 2013년 2월 25일
편집: Walter Roberson 2013년 2월 25일
To display all of it, at the command line command
x
(just the name of the matrix.) Remember, this can come out as a lot of output!
The values you will see will be the samples normalized to the range [-1, +1) [that is, -1 exactly is allowed but not +1 exactly). The samples have no absolute meaning; they are relative to the capabilities of whatever equipment will be used to play them.
I Made
I Made 2013년 2월 25일
I'm trying to apply haar filter to it not in matlab, but in java. Since java doesn't have the method(wavread) or (haar filter) i need to make sure what is it the output of wavread so i can make the same function to get the same output. In some books i read we need the frequency over time of signal to be processed ( i don't know if that's even true ) this is why i guess the output of the wavread function is the frequency over time. But i expect the value are like some decimal number but it is not.
I'm really confused about what to take from the wav files so i can process it with haar filter ?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by