待解决问题
LTE信道估计
离问题结束还有0天0小时 |
提问者:cgkk
|
提问时间:2016-5-4 12:08
大家都知道信道估计中有SINC的问题,是因为数据加矩形窗引起的。我的问题是,在数据从时域变到频域,不是在时域截取了吗?那么在频域上看,应该是带SINC了。但我看他们都认为,在从频域转到时域上看多径时,才有SINC。我不能理解这是为什么?这个SINC还与时域的循环卷积有关吗?
问题答案 ( 1 条 )
sinc的矩形窗是用在频域吧?你查查sinc滤波器的作用,其实就是时域信号生成的时候就要用sinc函数生成,这样保证信号在频率是有限范围(不然无限带宽也发不出去啊)。可以参考matlab的sinc例子。rng default
t = 1:10;
x = randn(size(t))';
ts = linspace(-5,15,600);
[Ts,T] = ndgrid(ts,t);
y = sinc(Ts - T)*x;
plot(t,x,'o',ts,y)
xlabel Time, ylabel Signal
legend('Sampled','Interpolated','Location','SouthWest')
legend boxoff
figure;plot(abs(fftshift(fft(y))));
t = 1:10;
x = randn(size(t))';
ts = linspace(-5,15,600);
[Ts,T] = ndgrid(ts,t);
y = sinc(Ts - T)*x;
plot(t,x,'o',ts,y)
xlabel Time, ylabel Signal
legend('Sampled','Interpolated','Location','SouthWest')
legend boxoff
figure;plot(abs(fftshift(fft(y))));
热点问题