Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - 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 de Scilab >> CACSD (Computer Aided Control Systems Design) > dt_ility

dt_ility

detectability test

Calling Sequence

[k, [n [,U [,Sld ] ] ]]=dt_ility(Sl [,tol])

Arguments

Sl

linear system (syslin list)

n

dimension of unobservable subspace

k

dimension of unstable, unobservable subspace (k<=n).

U

orthogonal matrix

Sld

linear system (syslin list)

tol

threshold for controllability test.

Description

Detectability test for sl, a linear system in state-space representation. U is a basis whose k first columns span the unstable, unobservable subspace of Sl (intersection of unobservable subspace of (A,C) and unstable subspace of A). Detectability means k=0.

Sld = (U'*A*U,U'*B,C*U,D) displays the "detectable part" of Sl=(A,B,C,D), i.e.

[*,*,*]
U'*A*U = [0,*,*]
[0,0,*]

C*U = [0,0,*]

with (A33,C3) observable (dimension nx-n), A22 stable (dimension n-k) and A11 unstable (dimension k).

Examples

A=[2,1,1;0,-2,1;0,0,3];
C=[0,0,1];
X=rand(3,3);A=inv(X)*A*X;C=C*X;
W=syslin('c',A,[],C);
[k,n,U,W1]=dt_ility(W);
W1("A")
W1("C")

See Also

  • contr — controllability, controllable subspace, staircase
  • st_ility — stabilizability test
  • unobs — unobservable subspace
  • stabil — stabilization
Report an issue
<< dsimul CACSD (Computer Aided Control Systems Design) dtsi >>

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:
Thu Oct 02 13:54:31 CEST 2014