pub struct PermEntropyResult {
pub normalized_pe: f32,
pub n_patterns: u32,
pub regime: PermEntropyRegime,
}Expand description
Result of a permutation entropy computation.
Fields§
§normalized_pe: f32Normalized permutation entropy ∈ [0, 1].
- Near 1.0 → stochastic (wide-sense stationary white noise)
- Near 0.0 → deterministic (strong periodic / cyclostationary structure)
n_patterns: u32Number of ordinal triplets scored = window_len − 2.
regime: PermEntropyRegimeQualitative regime classification.
Trait Implementations§
Source§impl Clone for PermEntropyResult
impl Clone for PermEntropyResult
Source§fn clone(&self) -> PermEntropyResult
fn clone(&self) -> PermEntropyResult
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 PermEntropyResult
impl Debug for PermEntropyResult
Source§impl PartialEq for PermEntropyResult
impl PartialEq for PermEntropyResult
impl Copy for PermEntropyResult
impl StructuralPartialEq for PermEntropyResult
Auto Trait Implementations§
impl Freeze for PermEntropyResult
impl RefUnwindSafe for PermEntropyResult
impl Send for PermEntropyResult
impl Sync for PermEntropyResult
impl Unpin for PermEntropyResult
impl UnsafeUnpin for PermEntropyResult
impl UnwindSafe for PermEntropyResult
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