~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/control/minss.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
minss            Scilab Group            Scilab Function              minss
 
2
NAME
 
3
   minss - minimal realization
 
4
  
 
5
CALLING SEQUENCE
 
6
 [slc]=minss( sl [,tol])
 
7
PARAMETERS
 
8
 sl,slc     : syslin lists (linear systems in state-space form)
 
9
            
 
10
 tol        : real (threshold for rank determination (see contr))
 
11
            
 
12
DESCRIPTION
 
13
   minss returns in slc a minimal realization of sl.
 
14
  
 
15
EXAMPLE
 
16
 sl=syslin('c',[1 0;0 2],[1;0],[2 1]);
 
17
 ssprint(sl);
 
18
 ssprint(minss(sl))
 
19
SEE ALSO
 
20
   contr, minreal, arhnk, contrss, obsvss, balreal  
 
21