pub enum StdevKind {
Sample,
Population,
}Expand description
Which denominator to use for window standard deviation (Bollinger, etc.).
Variants§
Sample
Unbiased sample stdev: divide by n - 1. Default for Bollinger (common in finance).
Population
Population stdev: divide by n.
Trait Implementations§
impl Copy for StdevKind
impl Eq for StdevKind
impl StructuralPartialEq for StdevKind
Auto Trait Implementations§
impl Freeze for StdevKind
impl RefUnwindSafe for StdevKind
impl Send for StdevKind
impl Sync for StdevKind
impl Unpin for StdevKind
impl UnsafeUnpin for StdevKind
impl UnwindSafe for StdevKind
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