pub enum Stability {
StableNode,
UnstableNode,
SaddlePoint,
Center,
StableFocus,
UnstableFocus,
Unknown,
}Expand description
Stability classification for a fixed point.
Variants§
StableNode
All eigenvalues have negative real part (stable node / focus).
UnstableNode
All eigenvalues have positive real part (unstable node / focus).
SaddlePoint
Mixed-sign eigenvalues (hyperbolic saddle point).
Center
Purely imaginary eigenvalues (center, undamped oscillations).
StableFocus
Complex eigenvalues, negative real part (stable spiral focus).
UnstableFocus
Complex eigenvalues, positive real part (unstable spiral focus).
Unknown
Cannot be determined from available data.
Trait Implementations§
impl Eq for Stability
impl StructuralPartialEq for Stability
Auto Trait Implementations§
impl Freeze for Stability
impl RefUnwindSafe for Stability
impl Send for Stability
impl Sync for Stability
impl Unpin for Stability
impl UnsafeUnpin for Stability
impl UnwindSafe for Stability
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