lax

Trait SVDDC_

Source
pub trait SVDDC_: Scalar {
    // Required method
    fn svddc(
        l: MatrixLayout,
        jobz: UVTFlag,
        a: &mut [Self],
    ) -> Result<SVDOutput<Self>>;
}

Required Methods§

Source

fn svddc( l: MatrixLayout, jobz: UVTFlag, a: &mut [Self], ) -> Result<SVDOutput<Self>>

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 SVDDC_ for f32

Source§

fn svddc( l: MatrixLayout, jobz: UVTFlag, a: &mut [Self], ) -> Result<SVDOutput<Self>>

Source§

impl SVDDC_ for f64

Source§

fn svddc( l: MatrixLayout, jobz: UVTFlag, a: &mut [Self], ) -> Result<SVDOutput<Self>>

Source§

impl SVDDC_ for c32

Source§

fn svddc( l: MatrixLayout, jobz: UVTFlag, a: &mut [Self], ) -> Result<SVDOutput<Self>>

Source§

impl SVDDC_ for c64

Source§

fn svddc( l: MatrixLayout, jobz: UVTFlag, a: &mut [Self], ) -> Result<SVDOutput<Self>>

Implementors§