Question

transfer function is given as follows. Write down a brief Octave/Matlab code to show is poles omplex plane. m 2 6s? +18s +12

0 0
Add a comment Improve this question Transcribed image text
Answer #1

The code to find the poles of the given transfer function amd plot them on zplane is as follow:-

s = tf('s')

H = (6*s^2+18*s+12)/(2*s^3+10*s^2+16*s+12)

P = pole(H)

zplane(P)

When this code is run in the command window step by step the following results appear :-

>> s = tf('s')

s =

s

Continuous-time transfer function.

>> H = (6*s^2+18*s+12)/(2*s^3+10*s^2+16*s+12)

H =

6 s^2 + 18 s + 12
--------------------------
2 s^3 + 10 s^2 + 16 s + 12

Continuous-time transfer function.

>> P = pole(H)

P =

-3.0000 + 0.0000i
-1.0000 + 1.0000i
-1.0000 - 1.0000i

Now to plot the poles in z plane the following command is written

>> zplane(P)

Which gives the following plot

- O X Figure 1 File Edit View O k Insert Tools Desktop Window A Help OE - O 0.5 Imaginary Part of o -0.5 -1.5 0.5 Real Part T

Add a comment
Know the answer?
Add Answer to:
transfer function is given as follows. Write down a brief Octave/Matlab code to show is poles...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT