Use the low pass filter designed in Problem 92 to evaluate t
Solution
Number of order is n=3
Write MATLAB code and find the band pass transfer function.
[num,den] = butter(3,[0.5 0.8],\'pass\')
T_p=tf(num,den)
MATLAB output:
Write MATLAB code and find the band stop transfer function.
[num,den] = butter(3,[0.5 0.8],\'stop\')
T_s=tf(num,den)
MATLAB output:
Here, assign the sampling frequency value is 1000Hz.
Write MATLAB code and find the high pass transfer function.
[num,den] = butter(3,1,’high’,’s’);
T_h=tf(num,den)
MATLAB output:
