我的问题是,信号的多糖成分是什么?信号的多相分量是什么意思?
这个例子是真的吗:
N = 100;
h = firls(N, [0 .2 .25 1], [1 1 0 0],[.001 .0001]);
% PolyPhase Componets
%First polypase component
for i=1:length(h),
h0(i)=h(i);
end
%% Second polyphase component
for i=1:length(h),
h1(i)=h(i)*exp((-j*2*pi*((i-1)))/4);
end
%% Third polyphase component:
for i=1:length(h),
h2(i)=h(i)*exp((-j*2*pi*(2*(i-1)))/4);
end
and so on ..
谢谢