Special.erf(u);
This function computes the error function erf(u) = 2/sqrt(pi)*Integral_0_u exp(-t^2)*dt numerically with a relative precision of about 1e-15. The implementation utilizes the formulation of the Boost library (53-bit implementation of erf.hpp, developed by John Maddock). Plot of the function:
For more details, see Wikipedia.
erf(0) // = 0 erf(10) // = 1 erf(0.5) // = 0.520499877813047
function erf extends Modelica.Icons.Function; input Real u "Input argument"; output Real y "= 2/sqrt(pi)*Integral_0_u exp(-t^2)*dt"; end erf;
Date | Description | ||
---|---|---|---|
June 22, 2015 |
|