Description: clc
clear all
close all
2013年9月28日
--- --- ---参数----------
Tr=42e-6
fs=9.5e6
K=0.7e11
Nfft=2048
-------------匹配滤波 时域生成--------------
t=(-Tr/2+1/fs:1/fs:Tr/2-1/fs)
w = kaiser(length(t),2.5)
w=w
w = ones(1,length(t))
ht1=w.*exp(-1i*pi*K*t.^2)
ht2=w.*exp(1i*pi*K*t.^2)
hf1=fft(ht1,Nfft)
hf2=fft(ht2,Nfft)
figure
subplot(211)
plot(abs(hf1))
title( 匹配滤波器1 幅频响应 )
subplot(212)
plot(phase(hf1))
title( 匹配滤波器1 相位 )
figure
subplot(211)
plot(abs(hf2))
title( 匹配滤波器2 幅频响应 )
To Search:
File list (Check if you may need any files):
MatchFilterLFM.m