Struct ndarray_linalg::solve::LUFactorized[][src]

pub struct LUFactorized<S: Data + RawDataClone> {
    pub a: ArrayBase<S, Ix2>,
    pub ipiv: Pivot,
}

Represents the LU factorization of a matrix A as A = P*L*U.

Fields

a: ArrayBase<S, Ix2>

The factors L and U; the unit diagonal elements of L are not stored.

ipiv: Pivot

The pivot indices that define the permutation matrix P.

Trait Implementations

impl<S: Clone + Data + RawDataClone> Clone for LUFactorized<S>[src]

impl<A, S> Determinant<A> for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A> + RawDataClone
[src]

impl<A, S> DeterminantInto<A> for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A> + RawDataClone
[src]

impl<A, S> Inverse for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A> + RawDataClone
[src]

type Output = Array2<A>

impl<A, S> InverseInto for LUFactorized<S> where
    A: Scalar + Lapack,
    S: DataMut<Elem = A> + RawDataClone
[src]

type Output = ArrayBase<S, Ix2>

impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A> + RawDataClone
[src]

impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A> + RawDataClone
[src]

impl<A, S> Solve<A> for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A> + RawDataClone
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for LUFactorized<S> where
    S: RefUnwindSafe,
    <S as RawData>::Elem: RefUnwindSafe

impl<S> Send for LUFactorized<S> where
    S: Send

impl<S> Sync for LUFactorized<S> where
    S: Sync

impl<S> Unpin for LUFactorized<S> where
    S: Unpin

impl<S> UnwindSafe for LUFactorized<S> where
    S: UnwindSafe,
    <S as RawData>::Elem: RefUnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,