Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.0 - 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 >> Control Systems - CACSD > Linear Analysis > Controllability Observability > contrss

contrss

controllable part

Syntax

slc = contrss(sl)
slc = contrss(sl, tol)

Arguments

sl

linear system (syslin list)

tol

is a threshold for controllability (see contr). default value is sqrt(%eps).

Description

returns the controllable part of the linear system sl = (A,B,C,D) in state-space form.

Examples

A=[1,1;0,2];B=[1;0];C=[1,1];sl=syslin('c',A,B,C);  //Non minimal
slc=contrss(sl);
sl1=ss2tf(sl);sl2=ss2tf(slc);      //Compare sl1 and sl2

See also

  • cont_mat — controllability matrix
  • ctr_gram — controllability gramian
  • cont_frm — transfer to controllable state-space
  • contr — controllability, controllable subspace, staircase
Report an issue
<< contr Controllability Observability ctr_gram >>

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 Feb 25 08:49:19 CET 2020