📄 seriescoefficients.m
字号:
function [b,a]=seriescoefficients(b1,a1,b2,a2)
%This function gives the filter coefficients of the series connection of two filters.
%
%The structure is: [b,a] = seriescoefficients(b1,a1,b2,a2)
%
%where b1 = the numerator coefficients of the 1st transfer function
% a1 = the denominator coefficients of the 1st transfer function
% b2 = the numerator coefficients of the 2nd transfer function
% a2 = the denominator coefficients of the 2nd transfer function
% b = the numerator coefficients of the composite transfer function
% a = the denominator coefficients of the composite transfer function
%
%
% Gautham J. Mysore - gauthamjm@yahoo.com
%
b = conv(b1,b2);
a = conv(a1,a2);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -