📄 genrfdn.m
字号:
% genrfdn.m
% D and mmax must be specified before calling
% This program is distributed as a supplement to the book
% "Biomedical Signal Processing and Signal Modeling" by E. N. Bruce,
% published by Wiley, 2000. It is provided for educational use only.
% While every effort has been made to insure its suitability to illustrate
% principles described in the above book, no specific feature or capability
% is implied or guaranteed.
for m=1:mmax
numr=D;denr=1;
for k=1:m-1
numr=numr*(k+D);
denr=denr*(k-D);
end
ry(m)=numr/(denr*(m-D));
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -