pub struct IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,{ /* private fields */ }Expand description
p(x|a) = Π p(xi|ai)
Trait Implementations
sourceimpl<D, T, U, Rhs, URhs> BitAnd<Rhs> for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
Rhs: Distribution<Value = Vec<U>, Condition = URhs>,
URhs: RandomVariable,
impl<D, T, U, Rhs, URhs> BitAnd<Rhs> for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
Rhs: Distribution<Value = Vec<U>, Condition = URhs>,
URhs: RandomVariable,
sourceimpl<D: Clone, T: Clone, U: Clone> Clone for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
impl<D: Clone, T: Clone, U: Clone> Clone for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
sourcefn clone(&self) -> IndependentArrayJoint<D, T, U>
fn clone(&self) -> IndependentArrayJoint<D, T, U>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<D, T, U> ConditionDifferentiableDistribution for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U> + ConditionDifferentiableDistribution,
T: RandomVariable,
U: RandomVariable,
impl<D, T, U> ConditionDifferentiableDistribution for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U> + ConditionDifferentiableDistribution,
T: RandomVariable,
U: RandomVariable,
fn ln_diff_condition(
&self,
x: &Self::Value,
theta: &Self::Condition
) -> Result<Vec<f64>, DistributionError>
sourceimpl<D: Debug, T: Debug, U: Debug> Debug for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
impl<D: Debug, T: Debug, U: Debug> Debug for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
sourceimpl<D, T, U> Distribution for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
impl<D, T, U> Distribution for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
sourceimpl<D, T, U, Rhs, TRhs> Mul<Rhs> for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
Rhs: Distribution<Value = TRhs, Condition = Vec<U>>,
TRhs: RandomVariable,
impl<D, T, U, Rhs, TRhs> Mul<Rhs> for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
Rhs: Distribution<Value = TRhs, Condition = Vec<U>>,
TRhs: RandomVariable,
sourceimpl<D, T, U> SampleableDistribution for IndependentArrayJoint<D, T, U>where
D: SampleableDistribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
impl<D, T, U> SampleableDistribution for IndependentArrayJoint<D, T, U>where
D: SampleableDistribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
sourceimpl<D, T, U> ValueDifferentiableDistribution for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U> + ValueDifferentiableDistribution,
T: RandomVariable,
U: RandomVariable,
impl<D, T, U> ValueDifferentiableDistribution for IndependentArrayJoint<D, T, U>where
D: Distribution<Value = T, Condition = U> + ValueDifferentiableDistribution,
T: RandomVariable,
U: RandomVariable,
fn ln_diff_value(
&self,
x: &Self::Value,
theta: &Self::Condition
) -> Result<Vec<f64>, DistributionError>
Auto Trait Implementations
impl<D, T, U> RefUnwindSafe for IndependentArrayJoint<D, T, U>where
D: RefUnwindSafe,
impl<D, T, U> Send for IndependentArrayJoint<D, T, U>
impl<D, T, U> Sync for IndependentArrayJoint<D, T, U>
impl<D, T, U> Unpin for IndependentArrayJoint<D, T, U>where
D: Unpin,
impl<D, T, U> UnwindSafe for IndependentArrayJoint<D, T, U>where
D: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more