Trait ndarray_linalg::types::Scalar [] [src]

pub trait Scalar: LapackScalar + LinalgScalar + AssociatedReal + AssociatedComplex + Absolute + SquareRoot + Exponential + NaturalLogarithm + Conjugate + RandNormal + Neg<Output = Self> + Debug {
    fn from_f64(_: f64) -> Self;
}

General Scalar trait. This generalizes complex and real number.

You can use the following operations with A: Scalar:

Required Methods

Implementations on Foreign Types

impl Scalar for f32
[src]

[src]

impl Scalar for f64
[src]

[src]

Implementors