File: mode.man

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 (36 lines) | stat: -rw-r--r-- 1,005 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
.TH mode 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
mode - select a mode in exec file
.SH CALLING SEQUENCE
.nf
mode(k)
k=mode() 
.fi
.SH DESCRIPTION
Used inside an exec-file or a scilab function \fVmode(k)\fR allows to
change the information displayed during the execution, depending on
the value of \fVk\fR:
.TP
k=0 
: The new variable values are displayed if required (see help on semi
or comma).
.TP
k=-1 
: the exec file or scilab function executes silently. (this is the
default value for scilab functions)
.TP
k=1 or k=3
: each line of instructions is echoed preceded of the prompt. The
new variable values are displayed if required. This is
the default for exec files.
.TP
k=7 
: The new variable values are displayed if required, each line of
instructions is echoed (if possible) and a prompt (>>) is issued after
each line waiting for a carriage return.
.LP
line display is disable for compiled scilab function (see getf or comp)
.SH SEE ALSO
exec, getf, semi, comma