pub struct Vsct<T: Float, V> { /* private fields */ }Expand description
Variance Stabilizing Centering Transform Sliding Window
Implementations§
Source§impl<T, V> Vsct<T, V>
impl<T, V> Vsct<T, V>
Sourcepub fn new(view: V, window_len: NonZeroUsize) -> Self
pub fn new(view: V, window_len: NonZeroUsize) -> Self
Create a new Variance Stabilizing Centering Transform with a chained View and a given sliding window length
Sourcepub fn window_len(&self) -> NonZeroUsize
pub fn window_len(&self) -> NonZeroUsize
The sliding window length.
Trait Implementations§
Auto Trait Implementations§
impl<T, V> Freeze for Vsct<T, V>
impl<T, V> RefUnwindSafe for Vsct<T, V>where
V: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, V> Send for Vsct<T, V>
impl<T, V> Sync for Vsct<T, V>
impl<T, V> Unpin for Vsct<T, V>
impl<T, V> UnsafeUnpin for Vsct<T, V>where
V: UnsafeUnpin,
T: UnsafeUnpin,
impl<T, V> UnwindSafe for Vsct<T, V>where
V: UnwindSafe,
T: 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