MATLAB: Butterworth passband filter transfer function in matlab

filterMATLABsignal processing

hello,
i am using the function butter as a butterworth passband filter but i need its transfer function order n
thanks in advance

Best Answer

The butter function returns the numerator polynomial ‘b’ and denominator polynomial ‘a’ of the transfer function as vectors if you request it:
[b,a] = butter(n,Wn,ftype)
See the documentation for details.