how extract spectr signal a modulated signal amplitude ??

조회 수: 9 (최근 30일)
lahssan
lahssan 2014년 1월 4일
댓글: Wayne King 2014년 1월 5일
I need a program that extracts the spectr of an amplitude modulated signal

답변 (1개)

Wayne King
Wayne King 2014년 1월 4일
The spectrum of an amplitude-modulated signal is simply its Fourier transform. Unless you are asking about how to extract the envelope of an amplitude-modulated signal. That you can do using the Hilbert transform (require Signal Processing Toolbox)
Fs = 10000;
t = 0:1/Fs:1;
x = [1+cos(2*pi*10*t)].*cos(2*pi*1000*t);
y = hilbert(x);
plot(t(1:2000),x(1:2000)); hold on;
plot(t(1:2000),abs(y(1:2000)),'r','linewidth',2);
plot(t(1:2000),-abs(y(1:2000)),'r','linewidth',2);
  댓글 수: 2
lahssan
lahssan 2014년 1월 4일
thank you rather I need real or complex cepstrum signal to signal.
Wayne King
Wayne King 2014년 1월 5일
Are you sure you don't mean you want the spectral envelope?

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

Community Treasure Hunt

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

Start Hunting!

Translated by