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

Experiment No. 1 Title: F Matlab, Matlab/S T B .: Amiliarization With Control System Tool Box Imulink OOL OX

The document describes an experiment to familiarize with MATLAB's Control System Toolbox. The objectives are to: 1) Obtain pole, zero, and gain values from a transfer function. 2) Obtain a transfer function model from pole, zero, and gain values. 3) Plot the pole-zero locations of a transfer function. It provides theory on transfer functions, including that zeros are where the numerator equals 0 and poles are where the denominator equals 0. An example MATLAB code is given to obtain a transfer function from given pole, zero, and gain values.

Uploaded by

Sourav Manna
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)
150 views3 pages

Experiment No. 1 Title: F Matlab, Matlab/S T B .: Amiliarization With Control System Tool Box Imulink OOL OX

The document describes an experiment to familiarize with MATLAB's Control System Toolbox. The objectives are to: 1) Obtain pole, zero, and gain values from a transfer function. 2) Obtain a transfer function model from pole, zero, and gain values. 3) Plot the pole-zero locations of a transfer function. It provides theory on transfer functions, including that zeros are where the numerator equals 0 and poles are where the denominator equals 0. An example MATLAB code is given to obtain a transfer function from given pole, zero, and gain values.

Uploaded by

Sourav Manna
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

EXPERIMENT NO.

1
TITLE: FAMILIARIZATION WITH MATLAB CONTROL SYSTEM TOOL BOX,
MATLAB/SIMULINK TOOL BOX.
OBJECTIVE: To obtain
I. Pole, zero, gain values from a given transfer function
II. Transfer function model from pole, zero, gain values
III. Pole, zero plot of a transfer function

THEORY:
A transfer function is also known as the network function is a mathematical representation, in
terms of spatial or temporal frequency, of the relation between the input and output of a (linear
time invariant) system. The transfer function is the ratio of the output Laplace Transform to the
input Laplace Transform assuming zero initial conditions. Many important characteristics of
dynamic or control systems can be determined from the transfer function. The transfer function
is commonly used in the analysis of single-input single-output electronic system, for instance. It
is mainly used in signal processing, communication theory, and control theory. The term is often
used exclusively to refer to linear time-invariant systems (LTI). In its simplest form for
continuous time input signal x(t) and output y(t), the transfer function is the linear mapping of
the Laplace transform of the input, X(s), to the output Y(s).
Zeros are the value(s) for z where the numerator of the transfer function equals zero. The
complex frequencies that make the overall gain of the filter transfer function zero.
Poles are the value(s) for z where the denominator of the transfer function equals zero. The
complex frequencies that make the overall gain of the filter transfer function infinite.
The general procedure to find the transfer function of a linear differential equation from input
to output is to take the Laplace Transforms of both sides assuming zero conditions, and to solve
for the ratio of the output Laplace over the input Laplace.
The transfer function provides a basis for determining important system response
characteristics without solving the complete differential equation. As defined, the transfer
function is a rational function in the complex variable‘s’ that is It is often convenient to factor
the polynomials in the numerator and the denominator, and to write the transfer function in
terms of those factors:
Example 2: Write matlab code to obtain transfer function of a system from its pole, zero, and gain
values. Assume pole locations are -2, 1, zero at -1 and gain is 7.

Matlab Code:

p= [-2 1]
z= [-1]
k=7
[num,den]= zp2tf(z',p',k)
g=tf(num,den)
Output:

Transfer function:
7s+7
-----------
s^2 + s – 2

You might also like