[][src]Struct ndarray_linalg::lapack::least_squares::LeastSquaresOutput

pub struct LeastSquaresOutput<A: Scalar> {
    pub singular_values: Vec<A::Real>,
    pub rank: i32,
}

Result of LeastSquares

Fields

singular_values: Vec<A::Real>

singular values

rank: i32

The rank of the input matrix A

Auto Trait Implementations

impl<A> RefUnwindSafe for LeastSquaresOutput<A> where
    <A as Scalar>::Real: RefUnwindSafe

impl<A> Send for LeastSquaresOutput<A> where
    <A as Scalar>::Real: Send

impl<A> Sync for LeastSquaresOutput<A> where
    <A as Scalar>::Real: Sync

impl<A> Unpin for LeastSquaresOutput<A> where
    <A as Scalar>::Real: Unpin

impl<A> UnwindSafe for LeastSquaresOutput<A> where
    <A as Scalar>::Real: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.