![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/197704/image.jpeg)
how to get z-transform expression along with the curve of this function
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am getting the plot for this function. But i want to show the H(z) of this butterworth lowpass filter. Can You pls help me with this!
0 Commenti
Risposte (1)
Dimitris Kalogiros
il 12 Ott 2018
Try this:
clear; clc;
fc=500; %Hz;
fs=2000; %Hz;
n=4; % filter order
[b,a] = butter(n ,fc/(fs/2));
freqz(b,a);
You should get:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/197704/image.jpeg)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!