Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Português - Русский - 日本語
Aide de Scilab >> Systèmes de Contrôle - CACSD > Représentation de Systèmes Linéaires > arma2ss

arma2ss

transform an armax data structure into state space representation.

Syntax

[S,Sn] = arma2ss(Ar)
S = arma2ss(Ar)

Parameters

Ar

an armax data structure (see armac.

S

a discrete time state space data structure (see syslin. The regular input to output transfer.

Sn

a discrete time state space data structure (see syslin. The noise input to output transfer.

Description

[S,Sn] = arma2ss(Ar)transform an armax data structure into a state space representation. The full armax transfer Fcan be obtained by F=[S,Sn].

Examples

A = [eye(2,2),[-1.5 0.1;-0.2 1.5],[0.7 -0.3;0.1 0.7]];
            B = [[0;0] [1;-1] [0.5;1.2]];
            Ar = armac(A, B, zeros(2, 2), 2, 1, 0)
            [S, Sn] = arma2ss(Ar)

See Also

Authors

  • Serge Steer, INRIA

History

VersionDescription
5.4.0 arma2ss added.
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:31:03 CEST 2016