Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> CACSD (Computer Aided Control Systems Design) > armac

armac

Scilab description of an armax process

Calling Sequence

[ar]=armac(a,b,d,ny,nu,sig)

Arguments

a=[Id,a1,..,a_r]

is a matrix of size (ny,r*ny)

b=[b0,.....,b_s]

is a matrix of size (ny,(s+1)*nu)

d=[Id,d1,..,d_p]

is a matrix of size (ny,p*ny);

ny

dimension of the output y

nu

dimension of the output u

sig

a matrix of size (ny,ny)

Description

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').

Examples

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)
// extract polynomial matrices from ar representation 
[A,B,D]=arma2p(ar);

See Also

  • arma — Scilab arma library
  • armax — armax identification
  • armax1 — armax identification
  • arsimul — armax simulation
  • arma2p — extract polynomial matrices from ar representation
  • tlist — Scilab object and typed list definition.
Report an issue
<< arma2ss CACSD (Computer Aided Control Systems Design) armax >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:36:21 CEST 2013