You are on page 1of 2

num = [0 0 15 75]

num = 1×4
0 0 15 75

den = [1 16 100 0]

den = 1×4
1 16 100 0

sys = tf(num,den)

sys =

15 s + 75
--------------------
s^3 + 16 s^2 + 100 s

Continuous-time transfer function.

bode(sys)
[Gm, Pm, wgn, wpc] = margin(sys)

Gm = Inf
Pm = 91.6644
wgn = Inf
wpc = 0.7573

if((Gm>0)&&(Pm>0))
disp('The Given System is Stable')
else
disp('The Given System Is Unstable')
end

The Given System is Stable

grid

1
2

You might also like