kaytth.m

来自「经典数字信号处理滤波器的源代码 重点是利用巴特沃斯模拟滤波器转而设计其它数字滤」· M 代码 · 共 21 行

M
21
字号
function H=kaytth(length);%KAYTTH	 Kay-Tretter filter computation. %	H=KAYTTH(length); Kay-Tretter filter computation.% %	See also INSTFREQ%	F. Auger, March 1994.%	Copyright (c) 1996 by CNRS (France).%%	------------------- CONFIDENTIAL PROGRAM -------------------- %	This program can not be used without the authorization of its%	author(s). For any comment or bug report, please send e-mail to %	f.auger@ieee.org pp1=length*(length+1);den=2.0*length*(length+1)*(2.0*length+1.0)/3.0;i=1:length; H=pp1-i.*(i-1);H=H ./ den;

⌨️ 快捷键说明

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