blob: a033bf8a20c5df07e1451b4d8d17395e3abaed49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Example 3.11
//Computing DC gain of the system.
clear;
clc;
//------------------------------------------------------------------
//Transfer Function
s=poly(0,'s');
num=3*(s+2);
den=(s^2+2*s+10);
Ys=syslin('c',num/den);
//The DC gain of the system Y(s) as s-->0 is
DC_Gain=horner(Ys,0)
disp(DC_Gain,"The DC gain of the system is:")
//------------------------------------------------------------------
|