pub struct TwoParameterBifurcationResult {
pub parameter_grid: Array2<f64>,
pub stability_map: Array2<f64>,
pub bifurcation_curves: Vec<BifurcationCurve>,
pub parameter_range_1: (f64, f64),
pub parameter_range_2: (f64, f64),
}Expand description
Two-parameter bifurcation analysis result
Fields§
§parameter_grid: Array2<f64>Parameter grid
stability_map: Array2<f64>Stability classification at each grid point
bifurcation_curves: Vec<BifurcationCurve>Detected bifurcation curves
parameter_range_1: (f64, f64)Parameter 1 range
parameter_range_2: (f64, f64)Parameter 2 range
Trait Implementations§
Source§impl Clone for TwoParameterBifurcationResult
impl Clone for TwoParameterBifurcationResult
Source§fn clone(&self) -> TwoParameterBifurcationResult
fn clone(&self) -> TwoParameterBifurcationResult
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 Freeze for TwoParameterBifurcationResult
impl RefUnwindSafe for TwoParameterBifurcationResult
impl Send for TwoParameterBifurcationResult
impl Sync for TwoParameterBifurcationResult
impl Unpin for TwoParameterBifurcationResult
impl UnwindSafe for TwoParameterBifurcationResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more