?? protofilter.m
字號:
%原型濾波器設計
function Prototype=ProtoFilter(subCarrNum,gama)
D= subCarrNum*gama-1; % Order
Fc = 1/subCarrNum; % Cutoff Frequency
flag = 'noscale'; % Sampling Flag
% Create the window vector for the design algorithm.
win = hamming(D+1);
% Calculate the coefficients using the FIR1 function.
Prototype = fir1(D, Fc, 'low', win, flag);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -