Hye i really confuse on how much method to write the code to plot magnitude and phase. Below is my function. X(z)=z / (z-1)^2 Any idea how to start beside plot?
Neeta Dsouza answered .
2025-11-20
Try This :
z = tf('z');
X = z / (z-1)^2;
bode(X)