pub enum EigenvalueType {
Real,
ComplexPair,
Infinite,
Zero,
}Expand description
Classification of a generalized eigenvalue (α_r + i*α_i) / β.
Variants§
Real
A purely real eigenvalue (α_i ≈ 0, β ≠ 0).
ComplexPair
Part of a complex conjugate pair (α_i ≠ 0, β ≠ 0).
Infinite
An infinite eigenvalue (β ≈ 0, α ≠ 0).
Zero
A zero eigenvalue (α ≈ 0, β ≠ 0).
Trait Implementations§
Source§impl Clone for EigenvalueType
impl Clone for EigenvalueType
Source§fn clone(&self) -> EigenvalueType
fn clone(&self) -> EigenvalueType
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 EigenvalueType
impl Debug for EigenvalueType
Source§impl PartialEq for EigenvalueType
impl PartialEq for EigenvalueType
impl Copy for EigenvalueType
impl Eq for EigenvalueType
impl StructuralPartialEq for EigenvalueType
Auto Trait Implementations§
impl Freeze for EigenvalueType
impl RefUnwindSafe for EigenvalueType
impl Send for EigenvalueType
impl Sync for EigenvalueType
impl Unpin for EigenvalueType
impl UnsafeUnpin for EigenvalueType
impl UnwindSafe for EigenvalueType
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