⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 odd_order_cascaded_lp_imp.m

📁 声音过滤器工具大集合.
💻 M
字号:
function y = odd_order_cascaded_LP_imp(x, a1, b1, a, b)
%ODD_ORDER_CASCADED_LP_IMP - Implements Nth-Order Low-Pass Filter by cascading
%                            a single first order section with M second order 
%                            low-pass sections, where N = 2M + 1.
%               
%     usage:  y = odd_order_cascaded_LP_imp(x, a1, b1, a, b)
%     
%           x = input vector
%           y = output vector
%          b1 = Two column vector, numerator coefficients of first-order section
%          a1 = Two column vector, denominator coefficients of first-order section
%           b = M x three matrix, numerator coefficients of even-order network
%           a = M x three matrix, denominator coefficients of even-order network
%           N = Scalar, filter order (odd)
%           M = Scalar, number of second order sections
%
%     See also odd_order_cascaded_LP.m 

%   References:
%      [1]  John Lane, Jayant Datta, Brent Karley, Jay Norwood, "DSP Filters", 
%           PROMPT Publications(an imprint of Sams Technical Publishing), 
%           Indianapolis, IN, 2001, page 335.
%           Book's website: www.dspaudiocookbook.com

%  Copyright (c) 2005 Bo餫

⌨️ 快捷键说明

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