필터 지우기
필터 지우기

why the Real Cepstrum code doesn't give an accurate figure?

조회 수: 1 (최근 30일)
Enez Furkan Cihan
Enez Furkan Cihan 2017년 8월 7일
편집: Enez Furkan Cihan 2017년 8월 7일
Hi, implementing a basic cepstral analysis, but there's a problem that we haven't got it; please look at ;
this's the saved voice of vowel 'e' and the basic code for real cepstrum is that;
eplot=find(abs(e)>0.01,1):length(e);
y=ifft(log(abs(fft(eplot))));
plot(y)
and getting this;
I think, we should have got a figure like that ;
What we miss? Thanks in advance.
  댓글 수: 4
Adam
Adam 2017년 8월 7일
If you aren't taking the fft of the indices rather than the data it would help if you show tha actual code you are using because what you posted is doing an fft on index values which is equivalent to something like this:
y = ifft( log( abs( fft( 200:20000 ) ) ) );
figure; plot( y )
which gives a plot similar to yours.
Enez Furkan Cihan
Enez Furkan Cihan 2017년 8월 7일
편집: Enez Furkan Cihan 2017년 8월 7일
[Y,FS]=audioread('eee.wav');
N=length(Y);
T=(0:N-1)/FS;
eplot=find(abs(T)>0.3,1):length(T);
b=ifft(log(abs(fft(Y))));
figure;subplot(2,1,1);plot(T,Y);subplot(2,1,2);plot(b)
I have done smth like that, what do u think about it ? It may be true?

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

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by