pub struct LorenzSystem {
pub sigma: f64,
pub rho: f64,
pub beta: f64,
}Expand description
Lorenz attractor: dx/dt = σ(y-x), dy/dt = x(ρ-z)-y, dz/dt = xy-βz.
Fields§
§sigma: f64§rho: f64§beta: f64Trait Implementations§
Source§impl Default for LorenzSystem
impl Default for LorenzSystem
Auto Trait Implementations§
impl Freeze for LorenzSystem
impl RefUnwindSafe for LorenzSystem
impl Send for LorenzSystem
impl Sync for LorenzSystem
impl Unpin for LorenzSystem
impl UnsafeUnpin for LorenzSystem
impl UnwindSafe for LorenzSystem
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