blob: bba921d14cbce98976246319c8e53bc2c5fe7e32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//User defined function
//Forms a transfer function
//Scilab: Co efficients are given in increasing power of variable
//Matlab: Co efficients are given in decreasing power of variable
//Hence co efficients are flipped here
//Input arguments: (1) Numerator co efficients(decreasing order)
//(2) Denominator co efficients
//(3) Variable to specify domain
// Updated (30-11-06)
// System is continuous => a is not passed
// System is discrete => a = -1
// System is discretized (sampled system) => a = Ts
// Uses syslin
function trfu = tf(num,den,a)
if argn(2) == 2
d = 'c';
elseif a == -1
d = 'd';
else
d = a
end;
num = clean(num);
den = clean(den);
num1 = poly(num(length(num):-1:1),'x','coeff');
den1 = poly(den(length(den):-1:1),'x','coeff');
trfu = syslin(d,num1,den1);
endfunction;
|