armac — Scilab description of an armax process
[ar]=armac(a,b,d,ny,nu,sig)
is a matrix of size (ny,r*ny)
is a matrix of size (ny,(s+1)*nu)
is a matrix of size (ny,p*ny);
dimension of the output y
dimension of the output u
a matrix of size (ny,ny)
This function creates a description as a tlist of an ARMAX process
ar
is defined by
ar=tlist(['ar','a','b','d','ny','nu','sig'],a,b,d,ny,nu,sig);
and thus the coefficients of ar
can be retrieved by e.g.
ar('a')
.