Trait ndarray_linalg::types::Scalar []

pub trait Scalar: LapackScalar + LinalgScalar + AssociatedReal + AssociatedComplex + Absolute + SquareRoot + Exponential + Conjugate + RandNormal + 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

Implementors