pub struct LogisticMap {
pub r: f64,
}Expand description
The logistic map x_{n+1} = r · xₙ (1 − xₙ).
Classic example of period-doubling route to chaos with r ∈ [0, 4].
Fields§
§r: f64Growth parameter r.
Implementations§
Source§impl LogisticMap
impl LogisticMap
Sourcepub fn orbit_1d(&self, x0: f64, n: usize) -> Vec<f64>
pub fn orbit_1d(&self, x0: f64, n: usize) -> Vec<f64>
Compute an orbit starting at x0 for n steps.
Sourcepub fn bifurcation_diagram(
r_min: f64,
r_max: f64,
n_r: usize,
transient: usize,
keep: usize,
) -> Vec<(f64, f64)>
pub fn bifurcation_diagram( r_min: f64, r_max: f64, n_r: usize, transient: usize, keep: usize, ) -> Vec<(f64, f64)>
Generate a bifurcation diagram by sweeping r in [r_min, r_max]
with n_r steps. For each r value the system is iterated
transient steps (discarded) then keep steps are recorded.
Returns a list of (r, x) pairs.
Trait Implementations§
Source§impl Clone for LogisticMap
impl Clone for LogisticMap
Source§fn clone(&self) -> LogisticMap
fn clone(&self) -> LogisticMap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LogisticMap
impl Debug for LogisticMap
Source§impl DiscreteMapIterate for LogisticMap
impl DiscreteMapIterate for LogisticMap
Auto Trait Implementations§
impl Freeze for LogisticMap
impl RefUnwindSafe for LogisticMap
impl Send for LogisticMap
impl Sync for LogisticMap
impl Unpin for LogisticMap
impl UnsafeUnpin for LogisticMap
impl UnwindSafe for LogisticMap
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.