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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
function sys = armaX(varargin)
[lhs , rhs] = argn();
if ( rhs < 2 ) then
errmsg = msprintf(gettext("%s: Unexpected number of input arguments : %d provided while should be 2"), "armaX", rhs);
error(errmsg)
end
z = varargin(1)
if typeof(z) == 'iddata' then
Ts = z.Ts;unit = z.TimeUnit
z = [z.OutputData z.InputData]
elseif typeof(z) == 'constant' then
Ts = 1;unit = 'seconds'
end
if ((~size(z,2)==2) & (~size(z,1)==2)) then
errmsg = msprintf(gettext("%s: input and output data matrix should be of size (number of data)*2"), "armaX");
error(errmsg);
end
if (~isreal(z)) then
errmsg = msprintf(gettext("%s: input and output data matrix should be a real matrix"), "armaX");
error(errmsg);
end
n = varargin(2)
if (size(n,"*")<3| size(n,"*")>4) then
errmsg = msprintf(gettext("%s: The order and delay matrix [na nb nc nk] should be of size [3 or 4]"), "armaX");
error(errmsg);
end
if (size(find(n<0),"*") | size(find(((n-floor(n))<%eps)== %f))) then
errmsg = msprintf(gettext("%s: values of order and delay matrix [na nb nc nk] should be nonnegative integer number "), "armaX");
error(errmsg);
end
na = n(1); nb = n(2); nc = n(3); //nd = n(4);nf = n(5);
if (size(n,"*") == 3) then
nk = 1
else
nk = n(4);
end
// storing U(k) , y(k) and n data in UDATA,YDATA and NDATA respectively
YDATA = z(:,1);
UDATA = z(:,2);
sys = estpoly(z,[na,nb,nc,0,0,nk])
endfunction
|