File: artest.cat

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (33 lines) | stat: -rw-r--r-- 1,138 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
artest            Scilab Group            Scilab Function            artest
NAME
   artest - arnold dynamical system
  
CALLING SEQUENCE
 artest(f_l,[odem,xdim,npts])
 arnold(t,x)
 iarf([a])
PARAMETERS
 f_l  : can be "arnold" or arnold. It is the name of the external for the
      arnold system. If  f_l is set to "arnold" a Fortran coded version of
      the arnold system where a(1:6)=1  will be used and if f_l is set to
      arnold a Scilab coded version will be used .  arnold is a Scilab
      macro coding the Arnold system. This macro is loaded when calling
      artest.
      
 iarf : is used to fix the values of a in the Scilab coded case. a is a
      vector of size 6.
      
 odem,xdim,npts
       : are optional arguments. Their meaning and syntax can be found in the
      portr3d  help
      
DESCRIPTION
   A call to the function artest() will interactively  display a phase
  portrait of  a the following dynamical system :
  
       ydot(1)=a(1)*cos(y(2)) +a(2)*sin(y(3))
       ydot(2)=a(3)*cos(y(3)) +a(4)*sin(y(1))
       ydot(3)=a(5)*cos(y(1)) +a(6)*sin(y(2))
SEE ALSO
   portr3d, ode, chaintest, lotest