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,
) -> Result<Self, ConfigError>
pub fn new( process_noise: f64, integration_time: Duration, ) -> Result<Self, ConfigError>
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<'__der_lifetime> DecodeValue<'__der_lifetime> for WhiteNoise
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for WhiteNoise
Source§fn decode_value<R: Reader<'__der_lifetime>>(
reader: &mut R,
header: Header,
) -> Result<Self>
fn decode_value<R: Reader<'__der_lifetime>>( reader: &mut R, header: Header, ) -> Result<Self>
Attempt to decode this message using the provided [
Reader].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<'__der_lifetime> EncodeValue for WhiteNoise
impl<'__der_lifetime> EncodeValue for WhiteNoise
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<'__der_lifetime> Sequence<'__der_lifetime> 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 UnsafeUnpin 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
§impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided [
Tag] decodable as a variant of this CHOICE?Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided [Writer].
§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.
§fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
Encode this message as ASN.1 DER, appending it to the provided
byte vector.
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.