pub struct LuDecomposition {
pub l: BoundedOp,
pub u: BoundedOp,
pub permutation: Vec<usize>,
}Expand description
LU decomposition result with partial pivoting: PA = LU.
Fields§
§l: BoundedOp§u: BoundedOp§permutation: Vec<usize>Trait Implementations§
Source§impl Clone for LuDecomposition
impl Clone for LuDecomposition
Source§fn clone(&self) -> LuDecomposition
fn clone(&self) -> LuDecomposition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LuDecomposition
impl RefUnwindSafe for LuDecomposition
impl Send for LuDecomposition
impl Sync for LuDecomposition
impl Unpin for LuDecomposition
impl UnsafeUnpin for LuDecomposition
impl UnwindSafe for LuDecomposition
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more