pub struct WaveletFeatures<F> {
pub energy_bands: Vec<F>,
pub relative_energy: Vec<F>,
pub wavelet_entropy: F,
pub wavelet_variance: F,
pub regularity_index: F,
pub dominant_scale: usize,
pub mra_features: MultiResolutionFeatures<F>,
pub time_frequency_features: TimeFrequencyFeatures<F>,
pub coefficient_stats: WaveletCoefficientStats<F>,
}Expand description
Wavelet-based features for time series analysis
This struct contains comprehensive wavelet transform features including energy distribution across scales, entropy measures, regularity indices, and time-frequency analysis results.
Fields§
§energy_bands: Vec<F>Energy at different frequency bands from DWT decomposition
relative_energy: Vec<F>Relative wavelet energy (normalized energy distribution)
wavelet_entropy: FWavelet entropy (Shannon entropy of wavelet coefficients)
wavelet_variance: FWavelet variance (measure of signal variability)
regularity_index: FRegularity measure based on wavelet coefficients
dominant_scale: usizeDominant scale from wavelet decomposition
mra_features: MultiResolutionFeatures<F>Multi-resolution analysis features
time_frequency_features: TimeFrequencyFeatures<F>Time-frequency analysis features
coefficient_stats: WaveletCoefficientStats<F>Wavelet coefficient statistics
Trait Implementations§
Source§impl<F: Clone> Clone for WaveletFeatures<F>
impl<F: Clone> Clone for WaveletFeatures<F>
Source§fn clone(&self) -> WaveletFeatures<F>
fn clone(&self) -> WaveletFeatures<F>
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<F: Debug> Debug for WaveletFeatures<F>
impl<F: Debug> Debug for WaveletFeatures<F>
Source§impl<F> Default for WaveletFeatures<F>where
F: Float + FromPrimitive,
impl<F> Default for WaveletFeatures<F>where
F: Float + FromPrimitive,
Auto Trait Implementations§
impl<F> Freeze for WaveletFeatures<F>where
F: Freeze,
impl<F> RefUnwindSafe for WaveletFeatures<F>where
F: RefUnwindSafe,
impl<F> Send for WaveletFeatures<F>where
F: Send,
impl<F> Sync for WaveletFeatures<F>where
F: Sync,
impl<F> Unpin for WaveletFeatures<F>where
F: Unpin,
impl<F> UnwindSafe for WaveletFeatures<F>where
F: UnwindSafe,
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.