pub struct LogNormalDistribution {
pub mean_log_value: f64,
pub std_log_value: f64,
pub distribution_name: String,
pub description: String,
}Expand description
Parameters of a log-normal distribution.
The distribution of a variable whose natural logarithm is normally
distributed; supported on (0, ∞) and parameterised on the log scale.
Fields§
§mean_log_value: f64Mean μ of the underlying normal on the log scale.
std_log_value: f64Standard deviation σ of the underlying normal on the log scale; > 0.
distribution_name: StringOptional human-readable name; unused by the numerics, defaults to empty.
description: StringOptional human-readable description; unused by the numerics, defaults to empty.
Trait Implementations§
Source§impl Cdf for LogNormalDistribution
impl Cdf for LogNormalDistribution
Source§impl Clone for LogNormalDistribution
impl Clone for LogNormalDistribution
Source§fn clone(&self) -> LogNormalDistribution
fn clone(&self) -> LogNormalDistribution
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LogNormalDistribution
impl Debug for LogNormalDistribution
Source§impl Default for LogNormalDistribution
impl Default for LogNormalDistribution
Source§fn default() -> LogNormalDistribution
fn default() -> LogNormalDistribution
Returns the “default value” for a type. Read more
Source§impl Moments for LogNormalDistribution
impl Moments for LogNormalDistribution
Source§impl Pdf for LogNormalDistribution
impl Pdf for LogNormalDistribution
Source§impl Quantile for LogNormalDistribution
impl Quantile for LogNormalDistribution
Source§impl Sample for LogNormalDistribution
impl Sample for LogNormalDistribution
Auto Trait Implementations§
impl Freeze for LogNormalDistribution
impl RefUnwindSafe for LogNormalDistribution
impl Send for LogNormalDistribution
impl Sync for LogNormalDistribution
impl Unpin for LogNormalDistribution
impl UnsafeUnpin for LogNormalDistribution
impl UnwindSafe for LogNormalDistribution
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