[][src]Struct rstat::univariate::cauchy::Cauchy

pub struct Cauchy(_);

Methods

impl Cauchy[src]

pub fn new(x0: f64, gamma: f64) -> Result<Cauchy, Error>[src]

pub fn new_unchecked(x0: f64, gamma: f64) -> Cauchy[src]

pub fn fwhm(&self) -> f64[src]

Trait Implementations

impl Clone for Cauchy[src]

impl ContinuousDistribution for Cauchy[src]

impl Convolution<Cauchy> for Cauchy[src]

type Output = Cauchy

The resulting Distribution type.

impl Copy for Cauchy[src]

impl Debug for Cauchy[src]

impl Default for Cauchy[src]

impl Display for Cauchy[src]

impl Distribution for Cauchy[src]

type Support = Reals

Support of sample elements.

type Params = Params

Parameter set uniquely defining the instance.

impl Entropy for Cauchy[src]

impl From<Params> for Cauchy[src]

impl Modes for Cauchy[src]

impl Quantiles for Cauchy[src]

Auto Trait Implementations

impl RefUnwindSafe for Cauchy

impl Send for Cauchy

impl Sync for Cauchy

impl Unpin for Cauchy

impl UnwindSafe for Cauchy

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,