pub struct CholeskyResult<T> {
pub l: Array2<T>,
}Expand description
Result of Cholesky decomposition.
Fields§
§l: Array2<T>Lower triangular factor L such that A = L * L^T
Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for CholeskyResult<T>
impl<T: Clone> Clone for CholeskyResult<T>
Source§fn clone(&self) -> CholeskyResult<T>
fn clone(&self) -> CholeskyResult<T>
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<T> Freeze for CholeskyResult<T>
impl<T> RefUnwindSafe for CholeskyResult<T>where
T: RefUnwindSafe,
impl<T> Send for CholeskyResult<T>where
T: Send,
impl<T> Sync for CholeskyResult<T>where
T: Sync,
impl<T> Unpin for CholeskyResult<T>
impl<T> UnwindSafe for CholeskyResult<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