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

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

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

The pivot indices that define the permutation matrix P.

Trait Implementations

impl<A, S> Solve<A> for LUFactorized<S> where
    A: Scalar,
    S: Data<Elem = 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

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

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

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

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

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

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

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

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> InverseInto for LUFactorized<S> where
    A: Scalar,
    S: DataMut<Elem = A>, 
[src]

Computes the inverse of the matrix.

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

Computes the inverse of the matrix.

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

Computes the (sign, natural_log) of the determinant of the matrix. Read more

Computes the determinant of the matrix.

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

Computes the (sign, natural_log) of the determinant of the matrix. Read more

Computes the determinant of the matrix.

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

Estimates the reciprocal of the condition number of the matrix in 1-norm. Read more

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

Estimates the reciprocal of the condition number of the matrix in 1-norm. Read more

Auto Trait Implementations

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

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