submatchfilter.m

来自「信号处理」· M 代码 · 共 9 行

M
9
字号
function mPolyphase=SubMatchFilter(tPolyphase,Row)
%this function is used to generate the polyphase components of the match filter in fmt system
%Input argument:tPolyphase——the the polyphase components of the transmit filter
%               Column    ——the column number of the input matrix.(点阵式)
%Output argument:mPolyphase——a matrix,it contains the polyphase components of the match filter.

for jj=1:Row
    mPolyphase(jj,:)=tPolyphase(Row-jj+1,:);
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?