File: artest.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (34 lines) | stat: -rw-r--r-- 1,118 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
34

artest(1)                      Scilab Function                      artest(1)
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 vec-
       tor 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