lax

Trait Rcond_

Source
pub trait Rcond_: Scalar + Sized {
    // Required method
    fn rcond(
        l: MatrixLayout,
        a: &[Self],
        anorm: Self::Real,
    ) -> Result<Self::Real>;
}

Required Methods§

Source

fn rcond(l: MatrixLayout, a: &[Self], anorm: Self::Real) -> Result<Self::Real>

Estimates the the reciprocal of the condition number of the matrix in 1-norm.

anorm should be the 1-norm of the matrix a.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Rcond_ for f32

Source§

fn rcond(l: MatrixLayout, a: &[Self], anorm: Self::Real) -> Result<Self::Real>

Source§

impl Rcond_ for f64

Source§

fn rcond(l: MatrixLayout, a: &[Self], anorm: Self::Real) -> Result<Self::Real>

Source§

impl Rcond_ for c32

Source§

fn rcond(l: MatrixLayout, a: &[Self], anorm: Self::Real) -> Result<Self::Real>

Source§

impl Rcond_ for c64

Source§

fn rcond(l: MatrixLayout, a: &[Self], anorm: Self::Real) -> Result<Self::Real>

Implementors§