Problem: Find the zeros, poles, and gain for the continuous time system defined by the transfer function \[ H(s)=\frac {25}{s^{2}+4s+25}\]
Mathematica Clear["Global`*"]; sys=TransferFunctionModel[25/(s^2+4 s+25),s]; TransferFunctionZeros[sys]
|
{{{}}} |
Matlab clear all; s = tf('s'); sys = 25/(s^2+4*s+25); [z,p,k] =zpkdata(sys,'v')
|
z = Empty matrix: 0-by-1 p = -2.0000 + 4.5826i -2.0000 - 4.5826i |