how to find the effective bandwidth of a signal (chirp linear modulated signal)
    조회 수: 2 (최근 30일)
  
       이전 댓글 표시
    
hello , is the following code correct? if not please tell me the right one
Fs =1000;                    % Sampling frequency
T = 1/Fs;                     
L=1000;                     % length of the signal
t = (0:L-1)*T;                % Time vector
x=chirp(t,10,L-1,100,'linear');
f=fft(x);
m=abs(f);
F=(0:L-1)*T;
e=trapz(m.^2);
b=trapz((F.^2).*m.^2);
Beff=(b/e).^0.5
댓글 수: 1
  John D'Errico
      
      
 2019년 10월 19일
				
      편집: John D'Errico
      
      
 2019년 10월 19일
  
			Of course. It does exactly what it does. Why do you think it is not correct?
답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Modulation에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

