pub enum PermEntropyRegime {
Insufficient,
HiddenDeterminism,
PartiallyOrdered,
StochasticNoise,
}Expand description
Qualitative regime for normalized permutation entropy.
Variants§
Insufficient
Window too small (< 3 samples) — PE undefined.
HiddenDeterminism
NPE < 0.70: hidden determinism detected.
Ordinal structure is decidedly non-uniform. Consistent with a
cyclostationary jammer, clock harmonic, or periodic interference.
Corroborates Boundary[RecurrentBoundaryGrazing] or
Violation[AttractorCollapse].
PartiallyOrdered
NPE ∈ [0.70, 0.92): partial structure — transitional regime.
Consistent with slow thermal drift, oscillator aging, or early-stage
structural departure. Corroborates Boundary[SustainedOutwardDrift].
StochasticNoise
NPE ≥ 0.92: wide-sense stationary noise floor.
Ordinal distribution is statistically uniform. Corroborates
Admissible grammar state and validates the no_std WSS precondition.
Implementations§
Trait Implementations§
Source§impl Clone for PermEntropyRegime
impl Clone for PermEntropyRegime
Source§fn clone(&self) -> PermEntropyRegime
fn clone(&self) -> PermEntropyRegime
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 PermEntropyRegime
impl Debug for PermEntropyRegime
Source§impl PartialEq for PermEntropyRegime
impl PartialEq for PermEntropyRegime
impl Copy for PermEntropyRegime
impl Eq for PermEntropyRegime
impl StructuralPartialEq for PermEntropyRegime
Auto Trait Implementations§
impl Freeze for PermEntropyRegime
impl RefUnwindSafe for PermEntropyRegime
impl Send for PermEntropyRegime
impl Sync for PermEntropyRegime
impl Unpin for PermEntropyRegime
impl UnsafeUnpin for PermEntropyRegime
impl UnwindSafe for PermEntropyRegime
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