0% found this document useful (0 votes)
3 views3 pages

Experiment 6

Uploaded by

ps5969471
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views3 pages

Experiment 6

Uploaded by

ps5969471
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

shreya(0105ec231122)

EXPERIMENT NO:6

AIM:TO ANALYZE THE STABILITY OF LINEAR SYSTEM USING NYQUIST PLOT

clc;
close all;
clear all;
p=[0 0 60]

p = 1×3
0 0 60

q=[1 3 2 ]

q = 1×3
1 3 2

sys=tf(p,q)

sys =

60
-------------
s^2 + 3 s + 2

Continuous-time transfer function.

nyquist(sys)
xlabel('real value------')
ylabel('imaginary value-----')
title('nyquist diagram created by shreya')

1
a=[0 2 2]

a = 1×3
0 2 2

b=[1 -1.5 -1]

b = 1×3
1.0000 -1.5000 -1.0000

sys=tf(a,b)

sys =

2 s + 2
---------------
s^2 - 1.5 s - 1

Continuous-time transfer function.

nyquist(sys)
xlabel('real value------')
ylabel('imaginary value-----')
title('nyquist diagram created by shreya')

2
3

You might also like