File: while.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 (39 lines) | stat: -rw-r--r-- 996 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
.TH while 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
while - while keyword 
.SH DESCRIPTION
\fVwhile\fR clause. Must be terminated by \fV"end"\fR
.LP
.Vb while expr ,instructions,...[,else instructions], end
.LP
.Vb while expr do instructions,...[,else instructions], end
.LP
.Vb while expr then instructions,...[,else instructions], end
Notes:
.TP
-
The only constraint is that each "then" or "do" keyword  must be on 
the same line line as "while" keyword.
.TP
-
The "keyword "then" or "do" can be replaced by a carriage return or a comma.
.TP
-
The optional \fV,else instructions\fR construction allows to gives
instructions which are executed when expr expression becomes false.

.LP
Warning: the number of characters used to define the body of any
conditionnal instruction (if while for or select/case) must be limited to
16k.

.SH EXAMPLE
.nf
e=1; a=1; k=1;
while norm(a-(a+e),1) > %eps, e=e/2; k=k+1; end
e,k
.fi
.SH SEE ALSO
for, select, break, return, pause