File: while.cat

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 (29 lines) | stat: -rw-r--r-- 852 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
while            Scilab Group            Scilab Function              while
NAME
   while - while keyword 
  
DESCRIPTION
   while clause. Must be terminated by "end"
  
   Notes:
  
 -    The only constraint is that each "then" or "do" keyword  must be on 
      the same line line as "while" keyword.
      
 -    The "keyword "then" or "do" can be replaced by a carriage return or
      a comma.
      
 -    The optional ,else instructions construction allows to gives
      instructions which are executed when expr expression becomes false. 
      
     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. 
      
EXAMPLE
 e=1; a=1; k=1;
 while norm(a-(a+e),1) > %eps, e=e/2; k=k+1; end
 e,k
SEE ALSO
   for, select, break, return, pause