pub struct LuResult<T> {
pub l: Array2<T>,
pub u: Array2<T>,
pub perm: Vec<usize>,
}Expand description
Result of LU decomposition.
Fields§
§l: Array2<T>L factor (lower triangular with unit diagonal)
u: Array2<T>U factor (upper triangular)
perm: Vec<usize>Permutation vector
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for LuResult<T>
impl<T> RefUnwindSafe for LuResult<T>where
T: RefUnwindSafe,
impl<T> Send for LuResult<T>where
T: Send,
impl<T> Sync for LuResult<T>where
T: Sync,
impl<T> Unpin for LuResult<T>
impl<T> UnwindSafe for LuResult<T>where
T: RefUnwindSafe,
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