home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Open 13
/
pcopen13.iso
/
Zip
/
SM34A.ZIP
/
LIBRARY
/
ERF.LI
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-11-14
|
203 b
|
10 lines
# erf(x) is the error function
# erf'(x_) := 2/sqrt(x)*e^(-x^2)
erf(0) := 0
erf(inf) := 1
erf(-inf) := -1
erf(x_) := if( isnumber(x) and numeric==on,
1/sqrt(pi)*(2*x - 2/3*x^3 + 1/5*x^5) )