Struct rusty_machine::linalg::LUP
source · [−]pub struct LUP<T> {
pub l: Matrix<T>,
pub u: Matrix<T>,
pub p: PermutationMatrix<T>,
}
Expand description
Result of unpacking an instance of PartialPivLu.
Fields
l: Matrix<T>
The lower triangular matrix in the decomposition.
u: Matrix<T>
The upper triangular matrix in the decomposition.
p: PermutationMatrix<T>
The permutation matrix in the decomposition.
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for LUP<T>where
T: RefUnwindSafe,
impl<T> Send for LUP<T>where
T: Send,
impl<T> Sync for LUP<T>where
T: Sync,
impl<T> Unpin for LUP<T>where
T: Unpin,
impl<T> UnwindSafe for LUP<T>where
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more