Struct ndarray_linalg::solve::Factorized [] [src]

pub struct Factorized<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.

Methods

impl<A, S> Factorized<S> where
    A: Scalar,
    S: DataMut<Elem = A>, 
[src]

[src]

Computes the inverse of the factorized matrix.

Trait Implementations

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

[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

[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

[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

[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

[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

[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

[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

[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

[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