Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.0 - Français

Change language to:
English - 日本語 - 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

Aide Scilab >> CACSD (Computer Aided Control Systems Design) > arma2p

arma2p

extract polynomial matrices from ar representation

Calling Sequence

[A,B,D]=arma2p(ar)

Arguments

A,B,D

three polynomial matrices

ar

Scilab 'ar' tlist for arma storage (see armac).

Description

this function extract polynomial matrices (A,B,D) from an armax description.

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
  • armac — Scilab description of an armax process
Report an issue
<< arma CACSD (Computer Aided Control Systems Design) arma2ss >>

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:
Mon Oct 01 17:37:17 CEST 2012