Module: BigMathR::Erf
- Defined in:
- ext/bigdecimal/math_r/erf.c,
ext/bigdecimal/math_r/math_r.c
Overview
A module that provides an eror functions. It is used internally.
Synopsis
Some functions are common in the C/C++ standard. However, it is not actually defined in C/C++, and is specified in POSIX.
-
Error function:
:erf -
Complementary Error function:
:erfc
The following are complex functions that are reserved words mainly for Linux OS.
-
Error function:
:cerf -
Complementary Error function:
:cerfc
- Reference
-
Multiple-Precision Exponential Integral and Related Functions - David M. Smith
Class Method Summary collapse
-
.erfc_algo911(x, prec) ⇒ BigDecimal
Calculate the complementary error function of
x.
Class Method Details
.erfc_algo911(x, prec) ⇒ BigDecimal
Calculate the complementary error function of x.
50 51 52 53 54 |
# File 'ext/bigdecimal/math_r/erf.c', line 50
static VALUE
__impl_erf_erfc_algo911(VALUE unused_obj, VALUE x, VALUE prec)
{
return erfc_branch(x, prec, erfc_algo911);
}
|