pub struct LogisticMap {
pub r: f64,
}Expand description
The logistic map x_{n+1} = r·x_n·(1 − x_n).
Fields§
§r: f64Growth parameter r ∈ [0, 4].
Implementations§
Source§impl LogisticMap
impl LogisticMap
Sourcepub fn iterate(&self, x0: f64, n: usize) -> Vec<f64>
pub fn iterate(&self, x0: f64, n: usize) -> Vec<f64>
Iterates the map for n steps starting from x0.
Sourcepub fn attractor(&self, x0: f64, transient: usize, n: usize) -> Vec<f64>
pub fn attractor(&self, x0: f64, transient: usize, n: usize) -> Vec<f64>
Returns the attractor (after discarding transient steps) of length n.
Sourcepub fn lyapunov_exponent(&self, x0: f64, n: usize) -> f64
pub fn lyapunov_exponent(&self, x0: f64, n: usize) -> f64
Computes the Lyapunov exponent of the map.
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 moreAuto 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.