genrfdn.m

来自「biomedical stuffs...」· M 代码 · 共 17 行

M
17
字号
%  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 + =
减小字号Ctrl + -
显示快捷键?