Assig

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 16

Matlab plot of system 1 and 2.

H = tf([10 40 1040],[1 2.5 27 13]);


figure(1)
bode(H,{1,1000000})
grid on

H = tf([3 10],[1 23 10285 220950 40100]);


figure(1)
bode(H,{1,1000000})
grid on
BY Hand plot of system 1 and 2.

m
a
g

p
h
a
s
e

m
a
g

p
h
a
s
e
SOLUTION.
H = tf([1 1.5 2.019 2.03 0.5],[1 1 1.775 1 0.775]);
figure(1)
bode(H,{1,1000000})
grid on

By Hand Plot.

m
a
g

p
h
a
s
e
Matlab Plot.

H = tf([6 10],[1 7 8]);


figure(1)
bode(H,{1,1000000})
grid on
BY HAND Plot.

m
a
g

p
h
a
s
e

You might also like