📄 submatchfilter.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -