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

pub struct LUFactorized<S: Data> {
    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<A, S> Solve<A> for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A>, 
[src]

fn solve<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>[src]

Solves a system of linear equations A * x = b where A is self, b is the argument, and x is the successful result. Read more

fn solve_into<S: DataMut<Elem = A>>(
    &self,
    b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>
[src]

Solves a system of linear equations A * x = b where A is self, b is the argument, and x is the successful result. Read more

fn solve_t<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>[src]

Solves a system of linear equations A^T * x = b where A is self, b is the argument, and x is the successful result. Read more

fn solve_t_into<S: DataMut<Elem = A>>(
    &self,
    b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>
[src]

Solves a system of linear equations A^T * x = b where A is self, b is the argument, and x is the successful result. Read more

fn solve_h<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>[src]

Solves a system of linear equations A^H * x = b where A is self, b is the argument, and x is the successful result. Read more

fn solve_h_into<S: DataMut<Elem = A>>(
    &self,
    b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>
[src]

Solves a system of linear equations A^H * x = b where A is self, b is the argument, and x is the successful result. Read more

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

type Output = Array2<A>

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

type Output = ArrayBase<S, Ix2>

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

fn det(&self) -> Result<A>[src]

Computes the determinant of the matrix.

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

fn det_into(self) -> Result<A>[src]

Computes the determinant of the matrix.

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

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

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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