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

« back to all changes in this revision

Viewing changes to man/utilities/scilab.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
 
scilab            Scilab Group            Scilab Function            scilab
2
 
NAME
3
 
   scilab  - Major unix script to execute Scilab and miscellaneous tools
4
 
  
5
 
CALLING SEQUENCE
6
 
 scilab [-ns -nw -display display -f file -args arguments]
7
 
 scilab -help [ <key> ]
8
 
 scilab -k <key>
9
 
 scilab -xk <key>
10
 
 scilab -link <objects>
11
 
DESCRIPTION
12
 
 scilab [-ns -nw -display display -f path -args arguments]
13
 
       : run scilab. 
14
 
      
15
 
     -ns  :if this option is  present the startup file SCI/scilab.star is
16
 
          not executed. 
17
 
          
18
 
     -nw  :if this option is present then  scilab is not run in an X
19
 
          window. 
20
 
          
21
 
     -f file
22
 
               : if this option is present then Scilab script file is executed first
23
 
          into Scilab. 
24
 
          
25
 
     -args arguments
26
 
               : if this option is present arguments are passed to Scilab. They can
27
 
          then be got by sciargs function. For multi arguments passing use
28
 
          a quoted, blank separated sequence of words like:  scilab -args
29
 
          'foo1 foo2'
30
 
          
31
 
 scilab -help <key>
32
 
       : write on-line documentation about <key> (usually automatically called 
33
 
      by scilab command "help <key>"). Example:
34
 
      
35
 
     scilab -help plot3d
36
 
 scilab -k <key>
37
 
       : gives the list of Scilab commands containing the  keyword <key> in
38
 
      their description (same as UNIX command man -k) 
39
 
      
40
 
 scilab -xk <key>
41
 
       : gives the list of Scilab commands containing the  keyword <key> in
42
 
      their description in a X window.
43
 
      
44
 
 scilab -link <objects>
45
 
       : Is used to produce a local scilex (executable code of Scilab) linked
46
 
      with the  additional files given by the  user in <objects>.  If, in
47
 
      the list of object files, some names are known from 
48
 
      SCIDIR/routines/default, then the scilex default  files are omitted
49
 
      and replaced with the given ones .  This command also produces an
50
 
      xscilab script, which when called  will ran the new generated scilex
51
 
      file.
52
 
      
53
 
     For example:
54
 
      
55
 
     scilab -link  C/interf.o C/evol.o C/bib.a
56
 
     will create a new scilex file in which the default interf.o  file
57
 
      will be replaced by C/interf.o.
58