Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Português - 日本語
Справка Scilab >> CACSD > Linear System Representation > 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:48:31 CEST 2016