pub enum DimensionMethod {
BoxCounting,
CorrelationDimension,
LyapunovDimension,
}Expand description
Method used to estimate the fractal dimension.
Variants§
BoxCounting
Box-counting (Minkowski–Bouligand) dimension.
CorrelationDimension
Correlation dimension (Grassberger–Procaccia).
LyapunovDimension
Lyapunov (Kaplan–Yorke) dimension.
Trait Implementations§
Source§impl Clone for DimensionMethod
impl Clone for DimensionMethod
Source§fn clone(&self) -> DimensionMethod
fn clone(&self) -> DimensionMethod
Returns a duplicate 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 moreSource§impl Debug for DimensionMethod
impl Debug for DimensionMethod
Source§impl PartialEq for DimensionMethod
impl PartialEq for DimensionMethod
impl Eq for DimensionMethod
impl StructuralPartialEq for DimensionMethod
Auto Trait Implementations§
impl Freeze for DimensionMethod
impl RefUnwindSafe for DimensionMethod
impl Send for DimensionMethod
impl Sync for DimensionMethod
impl Unpin for DimensionMethod
impl UnsafeUnpin for DimensionMethod
impl UnwindSafe for DimensionMethod
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