pub enum BiorthogonalType {
CDF53,
CDF97,
}Expand description
Biorthogonal wavelet types - Only CDF variants for financial analysis
CDF wavelets use the lifting scheme for extremely fast computation and are the only biorthogonal wavelets suitable for time series analysis.
Variants§
CDF53
CDF 5/3 - Le Gall 5/3, extremely fast via lifting scheme Perfect for real-time financial data processing
CDF97
CDF 9/7 - Cohen-Daubechies-Feauveau 9/7, high quality decomposition Best quality/speed tradeoff for financial analysis
Trait Implementations§
Source§impl Clone for BiorthogonalType
impl Clone for BiorthogonalType
Source§fn clone(&self) -> BiorthogonalType
fn clone(&self) -> BiorthogonalType
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 BiorthogonalType
impl Debug for BiorthogonalType
Source§impl PartialEq for BiorthogonalType
impl PartialEq for BiorthogonalType
impl Copy for BiorthogonalType
impl StructuralPartialEq for BiorthogonalType
Auto Trait Implementations§
impl Freeze for BiorthogonalType
impl RefUnwindSafe for BiorthogonalType
impl Send for BiorthogonalType
impl Sync for BiorthogonalType
impl Unpin for BiorthogonalType
impl UnwindSafe for BiorthogonalType
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 more