pub struct PolynomialSprott2Degree {
pub x: [f64; 10],
pub y: [f64; 10],
pub z: [f64; 10],
}
Expand description
Coefficients for a polynomial Sprott type attractor, of the second degree. See this page from chaoscope for more context.
Fields§
§x: [f64; 10]
§y: [f64; 10]
§z: [f64; 10]
Trait Implementations§
source§impl Attractor for PolynomialSprott2Degree
impl Attractor for PolynomialSprott2Degree
This is part of the polynomial Sprott algorithm. We get the new coordinates by multiplying previous (using polynomials) with a set of coefficients.
source§impl Clone for PolynomialSprott2Degree
impl Clone for PolynomialSprott2Degree
source§fn clone(&self) -> PolynomialSprott2Degree
fn clone(&self) -> PolynomialSprott2Degree
Returns a copy 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 PolynomialSprott2Degree
impl RefUnwindSafe for PolynomialSprott2Degree
impl Send for PolynomialSprott2Degree
impl Sync for PolynomialSprott2Degree
impl Unpin for PolynomialSprott2Degree
impl UnwindSafe for PolynomialSprott2Degree
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)