pub struct WhiteNoise {
pub mean: f64,
pub sigma: f64,
}Expand description
White noise is an uncorrelated random variable.
Fields§
§mean: f64Mean value of this white noise
sigma: f64Process noise as a one-sigma of the Normal distribution.
Implementations§
Source§impl WhiteNoise
impl WhiteNoise
Sourcepub fn new(process_noise: f64, integration_time: Duration) -> Self
pub fn new(process_noise: f64, integration_time: Duration) -> Self
Initializes a new random walk stochastic noise model from the process noise and the integration time. This will compute the process noise per second automatically.
Sourcepub fn constant_white_noise(process_noise: f64) -> Self
pub fn constant_white_noise(process_noise: f64) -> Self
Initializes a new random walk stochastic noise model from the provided process noise, assuming that the noise level is fixed regardless of the integration time.
pub fn from_pr_n0(pr_n0: f64, bandwidth_hz: f64) -> Self
Trait Implementations§
Source§impl Clone for WhiteNoise
impl Clone for WhiteNoise
Source§fn clone(&self) -> WhiteNoise
fn clone(&self) -> WhiteNoise
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 WhiteNoise
impl Debug for WhiteNoise
Source§impl Default for WhiteNoise
impl Default for WhiteNoise
Source§fn default() -> WhiteNoise
fn default() -> WhiteNoise
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WhiteNoise
impl<'de> Deserialize<'de> for WhiteNoise
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Mul<f64> for WhiteNoise
impl Mul<f64> for WhiteNoise
Source§impl MulAssign<f64> for WhiteNoise
impl MulAssign<f64> for WhiteNoise
Source§fn mul_assign(&mut self, rhs: f64)
fn mul_assign(&mut self, rhs: f64)
Performs the
*= operation. Read moreSource§impl PartialEq for WhiteNoise
impl PartialEq for WhiteNoise
Source§impl Serialize for WhiteNoise
impl Serialize for WhiteNoise
Source§impl Stochastics for WhiteNoise
impl Stochastics for WhiteNoise
impl Copy for WhiteNoise
impl StructuralPartialEq for WhiteNoise
Auto Trait Implementations§
impl Freeze for WhiteNoise
impl RefUnwindSafe for WhiteNoise
impl Send for WhiteNoise
impl Sync for WhiteNoise
impl Unpin for WhiteNoise
impl UnwindSafe for WhiteNoise
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> FromDhall for Twhere
T: DeserializeOwned,
impl<T> FromDhall for Twhere
T: DeserializeOwned,
fn from_dhall(v: &Value) -> Result<T, Error>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§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 more§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).§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.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.