pub enum MapType {
Logistic {
r: f64,
},
Henon {
a: f64,
b: f64,
},
Standard {
k: f64,
},
Tent {
mu: f64,
},
Bernoulli {
m: usize,
},
}Expand description
Specific discrete-time maps with named parameter sets.
Variants§
Logistic
The logistic map x_{n+1} = r·x_n·(1 − x_n).
Henon
The Hénon map (x, y) → (1 − a·x² + y, b·x).
Standard
Chirikov standard map (p, q) → (p + k·sin(q), q + p + k·sin(q)) mod 2π.
Tent
The tent map x_{n+1} = μ·min(x, 1-x).
Bernoulli
The Bernoulli shift map x_{n+1} = m·x mod 1.
Trait Implementations§
impl StructuralPartialEq for MapType
Auto Trait Implementations§
impl Freeze for MapType
impl RefUnwindSafe for MapType
impl Send for MapType
impl Sync for MapType
impl Unpin for MapType
impl UnsafeUnpin for MapType
impl UnwindSafe for MapType
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