pub enum Window {
}Expand description
Window function types
Variants§
Rectangular
Rectangular window (no windowing)
Hann
Hann window (raised cosine)
Hamming
Hamming window (raised cosine with offset)
Blackman
Blackman window
Bartlett
Bartlett window (triangular)
FlatTop
Flat top window
Parzen
Parzen window
Bohman
Bohman window
BlackmanHarris
Blackman-Harris window
Nuttall
Nuttall window
Barthann
Barthann window
Cosine
Cosine window
Exponential
Exponential window
Tukey(f64)
Tukey window (tapered cosine)
Kaiser(f64)
Kaiser window
Gaussian(f64)
Gaussian window
GeneralCosine(Vec<f64>)
General cosine window with custom coefficients
Trait Implementations§
Source§impl From<Window> for WindowParam
impl From<Window> for WindowParam
impl StructuralPartialEq for Window
Auto Trait Implementations§
impl Freeze for Window
impl RefUnwindSafe for Window
impl Send for Window
impl Sync for Window
impl Unpin for Window
impl UnwindSafe for Window
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