File: delip.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 (30 lines) | stat: -rw-r--r-- 735 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
delip            Scilab Group            Scilab Function              delip
NAME
   delip - elliptic integral
  
CALLING SEQUENCE
 [r]=delip(x,ck) 
PARAMETERS
 x          : real number (or real vector)
            
 ck         : real number between -1 and 1
            
 r          : real or complex number (or vector)
            
DESCRIPTION
   returns the value of the elliptic integral with parameter ck :
  
 r=integral from 0 to x {dt / sqrt((1-t^2)*(1-ck^2*t^2))}
   
  
   x real and positive. When called with x a real vector r is evaluated for
  each entry of x.
  
EXAMPLE
 ck=0.5;
 delip([1,2],ck)
 deff('y=f(t)','y=1/sqrt((1-t^2)*(1-ck^2*t^2))')
 intg(0,1,f)    //OK since real solution!
SEE ALSO
   amell, %asn, %sn