Struct rulinalg::matrix::decomposition::LUP [] [src]

pub struct LUP<T> {
    pub l: Matrix<T>,
    pub u: Matrix<T>,
    pub p: PermutationMatrix<T>,
}
[]

Result of unpacking an instance of PartialPivLu.

Fields

[]

The lower triangular matrix in the decomposition.

[]

The upper triangular matrix in the decomposition.

[]

The permutation matrix in the decomposition.

Trait Implementations

impl<T: Debug> Debug for LUP<T>
[src]

[]

Formats the value using the given formatter.

impl<T: Clone> Clone for LUP<T>
[src]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more