pub struct CharFunctionData {
pub distribution: String,
pub formula: String,
pub is_integrable: bool,
}Expand description
Characteristic function (Fourier transform of measure).
Fields§
§distribution: String§formula: String§is_integrable: boolImplementations§
Source§impl CharFunctionData
impl CharFunctionData
Sourcepub fn levy_cramer_applies(&self) -> bool
pub fn levy_cramer_applies(&self) -> bool
Lévy-Cramér continuity theorem: convergence in distribution iff pointwise convergence of char. functions.
Trait Implementations§
Source§impl Clone for CharFunctionData
impl Clone for CharFunctionData
Source§fn clone(&self) -> CharFunctionData
fn clone(&self) -> CharFunctionData
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 moreAuto Trait Implementations§
impl Freeze for CharFunctionData
impl RefUnwindSafe for CharFunctionData
impl Send for CharFunctionData
impl Sync for CharFunctionData
impl Unpin for CharFunctionData
impl UnsafeUnpin for CharFunctionData
impl UnwindSafe for CharFunctionData
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