Trait special::Error[][src]

pub trait Error {
    fn erf(self) -> Self;
fn erfc(self) -> Self;
fn inv_erf(self) -> Self; }

Error functions.

Required Methods

Compute the error function.

Compute the complementary error function.

Compute the inverse of the error function.

The code is based on a C implementation by Alijah Ahmed.

Implementations on Foreign Types

impl Error for f32
[src]

impl Error for f64
[src]

Implementors