pub enum EigenWhich {
LargestAlgebraic,
SmallestAlgebraic,
LargestMagnitude,
}Expand description
Which eigenvalues to compute.
Variants§
LargestAlgebraic
Largest algebraic value (most positive).
SmallestAlgebraic
Smallest algebraic value (most negative).
LargestMagnitude
Largest magnitude (largest |λ|).
Trait Implementations§
Source§impl Clone for EigenWhich
impl Clone for EigenWhich
Source§fn clone(&self) -> EigenWhich
fn clone(&self) -> EigenWhich
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 moreSource§impl Debug for EigenWhich
impl Debug for EigenWhich
Source§impl PartialEq for EigenWhich
impl PartialEq for EigenWhich
impl Copy for EigenWhich
impl Eq for EigenWhich
impl StructuralPartialEq for EigenWhich
Auto Trait Implementations§
impl Freeze for EigenWhich
impl RefUnwindSafe for EigenWhich
impl Send for EigenWhich
impl Sync for EigenWhich
impl Unpin for EigenWhich
impl UnsafeUnpin for EigenWhich
impl UnwindSafe for EigenWhich
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