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 > Transformation de Modèles > minreal

minreal

minimal balanced realization

Syntax

slb=minreal(sl [,tol])

Arguments

sl,slb

syslin lists

tol

real (threshold)

Description

[ae,be,ce]=minreal(a,b,c,domain [,tol]) returns the balanced realization of linear system sl (syslin list).

sl is assumed stable.

tol threshold used in equil1.

Examples

A=[-eye(2,2),rand(2,2);zeros(2,2),-2*eye(2,2)];
B=[rand(2,2);zeros(2,2)];C=rand(2,4);
sl=syslin('c',A,B,C);
slb=minreal(sl);
ss2tf(sl)
ss2tf(slb)
ctr_gram(sl)
clean(ctr_gram(slb))
clean(obs_gram(slb))

See Also

  • minss — minimal realization
  • balreal — balanced realization
  • arhnk — Hankel norm approximant
  • equil — balancing of pair of symmetric matrices
  • equil1 — balancing (nonnegative) pair of matrices
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