pub struct Eigenvalue {
pub value: f64,
pub multiplicity: Option<usize>,
}Expand description
An eigenvalue with optional algebraic multiplicity.
Fields§
§value: f64The eigenvalue λ.
multiplicity: Option<usize>Algebraic multiplicity (if known).
Implementations§
Source§impl Eigenvalue
impl Eigenvalue
Trait Implementations§
Source§impl Clone for Eigenvalue
impl Clone for Eigenvalue
Source§fn clone(&self) -> Eigenvalue
fn clone(&self) -> Eigenvalue
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 Eigenvalue
impl Debug for Eigenvalue
Source§impl PartialEq for Eigenvalue
impl PartialEq for Eigenvalue
impl Copy for Eigenvalue
impl StructuralPartialEq for Eigenvalue
Auto Trait Implementations§
impl Freeze for Eigenvalue
impl RefUnwindSafe for Eigenvalue
impl Send for Eigenvalue
impl Sync for Eigenvalue
impl Unpin for Eigenvalue
impl UnwindSafe for Eigenvalue
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