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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
doc ///
Key
erf
(erf,CC)
(erf,RR)
(erf,RRi)
Headline
error function
Usage
erf x
Inputs
x:RR
Outputs
:RR -- the error function of @TT "x"@
Description
Text
The @wikipedia "error function"@
\(\operatorname{erf} x = \frac{2}{\sqrt\pi}\int_0^x e^{-t^2}\,dt\).
Example
erf 2
SeeAlso
erfc
inverseErf
///
doc ///
Key
erfc
(erfc,CC)
(erfc,RR)
(erfc,RRi)
Headline
complementary error function
Usage
erfc x
Inputs
x:RR
Outputs
:RR -- the complementary error function of @TT "x"@
Description
Text
The complementary @wikipedia "error function"@
\(\operatorname{erfc} x = \frac{2}{\sqrt\pi}\int_x^\infty e^{-t^2}\,dt\).
Example
erfc 2
SeeAlso
erf
inverseErf
///
doc ///
Key
inverseErf
(inverseErf,RR)
(inverseErf,RRi)
Headline
inverse error function
Usage
inverseErf y
Inputs
y:RR
Outputs
:RR -- the inverse error function of @TT "y"@
Description
Text
The inverse of @TO "erf"@.
Example
erf 2
inverseErf oo
SeeAlso
erf
erfc
///
|