pub struct LogNormal<S: Scalar> {
pub mu: S,
pub sigma: S,
}Expand description
Log-normal distribution: ln(X) ~ N(mu, sigma^2).
Fields§
§mu: S§sigma: SImplementations§
Trait Implementations§
Source§impl<S: Scalar> ContinuousDistribution<S> for LogNormal<S>
impl<S: Scalar> ContinuousDistribution<S> for LogNormal<S>
Auto Trait Implementations§
impl<S> Freeze for LogNormal<S>where
S: Freeze,
impl<S> RefUnwindSafe for LogNormal<S>where
S: RefUnwindSafe,
impl<S> Send for LogNormal<S>
impl<S> Sync for LogNormal<S>
impl<S> Unpin for LogNormal<S>where
S: Unpin,
impl<S> UnsafeUnpin for LogNormal<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for LogNormal<S>where
S: 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