~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/scicos/steadycos.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
steadycos          Scilab Group          Scicos function          steadycos
2
 
NAME
3
 
   steadycos - Finds an equilibrium state of a system described by a scicos
4
 
  diagram
5
 
  
6
 
CALLING SEQUENCE
7
 
 [X,U,Y,XP]=steadycos(scs_m,X,U,Y,Indx,Indu,Indy [,Indxp [,param ] ])
8
 
PARAMETERS
9
 
 scs_m      : a Scicos data structure
10
 
            
11
 
 X          : column vector. Continuous state. Can be set to [] if zero.
12
 
            
13
 
 U          : column vector. Input. Can be set to [] if zero.
14
 
            
15
 
 Y          : column vector. Output. Can be set to [] if zero.
16
 
            
17
 
 Indx       :vector,  index of entries of X that are not fixed. If all can
18
 
            vary, set to 1:$
19
 
            
20
 
 Indu       : vector, index of entries of U that are not fixed. If all can
21
 
            vary, set to 1:$
22
 
            
23
 
 Indy       :vector,  index of entries of Y that are not fixed. If all can
24
 
            vary, set to 1:$
25
 
            
26
 
 Indxp      :vector, index of entries of XP (derivative of X) that need
27
 
            not be zero. If all can vary, set to 1:$. Default [].
28
 
            
29
 
 param      : list with two elements (default list(1.d-6,0))
30
 
            
31
 
           param(1)
32
 
                           : scalar. Perturbation level for linearization; the following
33
 
                variation is used   del([x;u])_i =
34
 
                param(1)+param(1)*1d-4*abs([x;u])
35
 
                
36
 
           param(2)
37
 
                           : scalar. Time t
38
 
                
39
 
DESCRIPTION
40
 
   Finds an equilibrium state of a general dynamical system described by a
41
 
  scicos diagram.
42
 
  
43
 
SEE ALSO
44
 
  .SH SEE ALSO
45
 
  scicos, scicos_main, lincos
46
 
  
47
 
EXAMPLE
48
 
AUTHOR
49
 
   R. Nikoukhah
50