MATLAB Program for finding Poles & Zeroes of Transfer Function

Q. The transfer function of a system is given below

Determines the poles and zeroes and show the pole-zero configuration in s-plane using MATLAB.

First of all simplifying numerator(p1) and denominator(q1) of the transfer function respectively as

p1=8s2+56s+96

q1=s4+4s3+9s2+10s

Program

% program for finding poles and zeroes of a transfer function
% provided by electricalvoice.com
clc
clear all
p1=[8 56 96];
q1=[1 4 9 10 0];
sys4=tf(p1,q1)
pzmap(sys4)

Q. The transfer function of a system is given below

Determines the poles and zeroes and show the pole-zero configuration in s-plane using MATLAB.

First of all simplifying numerator(p1) and denominator(q1) of the transfer function respectively as

p1=8s+32

q1=s4+4s3+9s2+10s

Program

% program for finding poles and zeroes of a transfer function
% provided by electricalvoice.com
clc
clear all
p1=[8 32];
q1=[1 4 9 10 0];
sys4=tf(p1,q1)
pzmap(sys4)

 

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We don't have any banner, Flash, animation, obnoxious sound, or popup ad. We do not implement these annoying types of ads!

We need fund to operate the site, and almost all of it comes from our online advertising.

Please add electricalvoice.com to your ad blocking whitelist or disable your adblocking software.

×