Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
43 views

Matlab 14

Experiment 10 aimed to find the transfer function given gain, zeroes, and poles. MATLAB was used to enter the gain of 8, zeroes of 3 and 4, and poles of 5, 6, 7, and 8. The zp2tf command generated the numerator and denominator polynomials. The transfer function was printed using s, t, and x as the independent variable. Precautions included entering values correctly and writing commands correctly to avoid errors.

Uploaded by

Rudra Mishra
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
43 views

Matlab 14

Experiment 10 aimed to find the transfer function given gain, zeroes, and poles. MATLAB was used to enter the gain of 8, zeroes of 3 and 4, and poles of 5, 6, 7, and 8. The zp2tf command generated the numerator and denominator polynomials. The transfer function was printed using s, t, and x as the independent variable. Precautions included entering values correctly and writing commands correctly to avoid errors.

Uploaded by

Rudra Mishra
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

DATE- 26/10/13

EXPERIMENT NO. 10

PAGE NO. 15

AIM= To Find Transfer Function When Gain ,Zeroes& Poles Are Given At 8, (3,4)&(5 6 7 80 resp.
SOFTWARE USED= MATLAB 7.12.0(R2011a)[STUDENT VERSION]
SOLUTION:
>> z=[3;4]
z=
3
4
>> p=[5 6 7 8]
p=
5

>> k=[8]
k=
8
>> [num,den]=zp2tf(z,p,k)
num =
0

8 -56 96

den =
1

-26

251

-1066

1680

>> printsys(num,den,'s')
num/den =

8 s^2 - 56 s + 96
-------------------------------------s^4 - 26 s^3 + 251 s^2 - 1066 s + 1680
>> printsys(num,den,'t')
num/den =

NAME- PRINCI BHARDWAJ

ROLL NO. 1228421042

PAGE NO. 16
8 t^2 - 56 t + 96
-------------------------------------t^4 - 26 t^3 + 251 t^2 - 1066 t + 1680
>> printsys(num,den,'x')

num/den =

8 x^2 - 56 x + 96
-------------------------------------x^4 - 26 x^3 + 251 x^2 - 1066 x + 1680
PRECAUTION:
1. Enter values correctly to obtain correct answer.
2. Do write command correctly to avoid any error.

NAME- PRINCI BHARDWAJ

ROLL NO. 1228421042

You might also like