File: scicos_main.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 (78 lines) | stat: -rw-r--r-- 2,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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78

scicos_main(Janvier 1997)                           scicos_main(Janvier 1997)
NAME
  scicos_main - Scicos editor main  data structure

DEFINITION
  scs_m=list(params,o_1,....,o_n)

PARAMETERS

  params
       : Scilab list,
       params=list(wpar,title,tol,tf,context,void,options,void,void,doc))

       wpar
         : viewing parameters: [w,h,Xshift,Yshift]

         w : real scalar,Scicos editor window width

         h : real scalar,Scicos editor window height

         Xshift
           : real scalar, diagram drawing x offset within Scicos editor win-
           dow

         Yshift
           : real scalar, diagram drawing y offset within Scicos editor win-
           dow

       title
         : character string, diagram title and default name of save file name

       tol
         : 1 x 4 vector [atol,rtol,ttol,maxt], where  atol, rtol are respec-
         tively absolute and relative tolerances for the ode solver, ttol is
         the  minimal distance between to different events time and maxt is
         maximum integration time interval for a single call to the ode
         solver.

       tf
         : real scalar, final time for simulation.

       context
         : vector of character strings, Scilab instructions used to define
         Scilab variables  used in block definitions as symbolic parameters.

       void
         : unused fields

       options
         :  list(With3D,Color3D)

         With3D
           : boolean, true for 3D shape blocks

         Color3D
           : vector with three entries  [R,G,B]. defines the color of 3D
           shape

       doc
         : user defined diagram documentation structure, default value is
         list()

  o_i  : block or link  or deleted object data structure.

       See scicos_block and scicos_link).

       Deleted object data structure is marked list('Deleted').

  scs_m
       : main Scicos structure

DESCRIPTION
  Scicos editor uses and modifies the  Scicos editor main  data structure to
  keep all information relative to the edited diagram. Scicos compiler uses
  it as a input.
SEE ALSO
  scicos,  scicos_block, scicos_link