Trait lax::SVD_

source · []
pub trait SVD_: Scalar {
    fn svd(
        l: MatrixLayout,
        calc_u: bool,
        calc_vt: bool,
        a: &mut [Self]
    ) -> Result<SVDOutput<Self>>; }
Expand description

Wraps *gesvd

Required Methods

Calculate singular value decomposition $ A = U \Sigma V^T $

Implementations on Foreign Types

Implementors