[][src]Struct survival_analysis::distribution::weibull::WeibullDistribution

pub struct WeibullDistribution<F> {
    pub shape: F,
    pub scale: F,
}

Fields

shape: Fscale: F

Trait Implementations

impl<F: Clone> Clone for WeibullDistribution<F>[src]

impl<F: Copy> Copy for WeibullDistribution<F>[src]

impl<S, D, F> CumulativeHazard<ArrayBase<S, D>, ArrayBase<OwnedRepr<F>, D>> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + SafeLogExp + ScalarOperand
[src]

impl<S, D, F> CumulativeHazard<ArrayBase<S, D>, F> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + SafeLogExp + ScalarOperand
[src]

impl<F: Debug> Debug for WeibullDistribution<F>[src]

impl<F: Default> Default for WeibullDistribution<F>[src]

impl<F> From<WeibullDistribution<F>> for Vec<F>[src]

impl<S, F> InitialSolvePoint<WeibullDistribution<F>> for RightCensored<S, Ix1> where
    S: Data<Elem = F>,
    F: Float + FromPrimitive
[src]

impl<S, F> InitialSolvePoint<WeibullDistribution<F>> for LeftCensored<S, Ix1> where
    S: Data<Elem = F>,
    F: Float + FromPrimitive
[src]

impl<S, F> InitialSolvePoint<WeibullDistribution<F>> for IntervalCensored<S, Ix1> where
    S: Data<Elem = F>,
    F: Float + FromPrimitive
[src]

impl<S, D, F> LogCumulativeDensity<ArrayBase<S, D>, ArrayBase<OwnedRepr<F>, D>> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + SafeLogExp + ScalarOperand + Neg + Sub<Array<F, D>, Output = Array<F, D>>, 
[src]

impl<S, D, F> LogCumulativeDensity<ArrayBase<S, D>, F> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + SafeLogExp + ScalarOperand + Neg + Sub<Array<F, D>, Output = Array<F, D>>, 
[src]

impl<S, D, F> LogHazard<ArrayBase<S, D>, ArrayBase<OwnedRepr<F>, D>> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + ScalarOperand
[src]

impl<S, D, F> LogHazard<ArrayBase<S, D>, F> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + FromPrimitive + ScalarOperand
[src]

impl<F: PartialEq> PartialEq<WeibullDistribution<F>> for WeibullDistribution<F>[src]

impl<F> StructuralPartialEq for WeibullDistribution<F>[src]

impl<S, D, F> Survival<ArrayBase<S, D>, ArrayBase<OwnedRepr<F>, D>> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + SafeLogExp + ScalarOperand + Neg
[src]

impl<S, D, F> Survival<ArrayBase<S, D>, F> for WeibullDistribution<F> where
    S: Data<Elem = F>,
    D: Dimension,
    F: Float + SafeLogExp + ScalarOperand + Neg
[src]

impl<'a, F> TryFrom<&'a [F]> for WeibullDistribution<F> where
    F: Copy
[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<F> RefUnwindSafe for WeibullDistribution<F> where
    F: RefUnwindSafe

impl<F> Send for WeibullDistribution<F> where
    F: Send

impl<F> Sync for WeibullDistribution<F> where
    F: Sync

impl<F> Unpin for WeibullDistribution<F> where
    F: Unpin

impl<F> UnwindSafe for WeibullDistribution<F> where
    F: UnwindSafe

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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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

type Owned = T

The resulting type after obtaining ownership.

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>,