File: armac.man

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (50 lines) | stat: -rw-r--r-- 866 bytes parent folder | download
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
.TH armac 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
armac - Scilab description of an armax process
.SH CALLING SEQUENCE
.nf
[ar]=armac(a,b,d,ny,nu,sig)
.fi
.SH PARAMETERS
.TP 20
a=[Id,a1,..,a_r]
: is a matrix of size (ny,r*ny)
.TP
b=[b0,.....,b_s]
: is a matrix of size (ny,(s+1)*nu)
.TP 
d=[Id,d1,..,d_p]
: is a matrix of size (ny,p*ny);
.TP 
ny 
: dimension of the output  y
.TP 
nu 
: dimension of the output  u 
.TP 
sig 
: a matrix of size (ny,ny)
.SH DESCRIPTION
this function creates a description as a list of an  ARMAX process 
.IG
.nf
   A(z^-1)y= B(z^-1)u + D(z^-1)sig*e(t)
.fi
.FI
.LA $$   A(z^{-1})y= B(z^{-1})u + D(z^{-1})sig*e(t)$$
.SH EXAMPLE
.nf 
a=[1,-2.851,2.717,-0.865].*.eye(2,2)
b=[0,1,1,1].*.[1;1];
d=[1,0.7,0.2].*.eye(2,2);
sig=eye(2,2);
ar=armac(a,b,d,2,1,sig)
.fi
.SH SEE ALSO
arma, armax, armax1, arsimul