pub struct PermutationEntropyResult {
pub permutation_entropy: f64,
pub normalized_entropy: f64,
pub order: usize,
pub delay: usize,
pub n_patterns: usize,
pub pattern_counts: Vec<(Vec<usize>, usize)>,
pub is_valid: bool,
}Fields§
§permutation_entropy: f64§normalized_entropy: f64§order: usize§delay: usize§n_patterns: usize§pattern_counts: Vec<(Vec<usize>, usize)>§is_valid: boolTrait Implementations§
Source§impl Clone for PermutationEntropyResult
impl Clone for PermutationEntropyResult
Source§fn clone(&self) -> PermutationEntropyResult
fn clone(&self) -> PermutationEntropyResult
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 PermutationEntropyResult
impl Debug for PermutationEntropyResult
Auto Trait Implementations§
impl Freeze for PermutationEntropyResult
impl RefUnwindSafe for PermutationEntropyResult
impl Send for PermutationEntropyResult
impl Sync for PermutationEntropyResult
impl Unpin for PermutationEntropyResult
impl UnsafeUnpin for PermutationEntropyResult
impl UnwindSafe for PermutationEntropyResult
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