/// <summary> /// Get the integral of this distribution times another distribution raised to a power. /// </summary> /// <param name="that"></param> /// <param name="power"></param> /// <returns></returns> public double GetLogAverageOfPower(DistributionRefArray <T, DomainType> that, double power) { return(Distribution.GetLogAverageOfPower(array, that.array, power)); }
/// <summary> /// The expected logarithm of that distribution under this distribution. /// </summary> /// <param name="that">The distribution to take the logarithm of.</param> /// <returns><c>sum_x this.Evaluate(x)*Math.Log(that.Evaluate(x))</c></returns> /// <remarks>This is also known as the cross entropy. /// For a DistributionArray, this specializes to: /// <c>sum_i sum_x this[i].Evaluate(x)*Math.Log(that[i].Evaluate(x))</c> /// = <c>sum_i this[i].GetAverageLog(that[i])</c> /// </remarks> public double GetAverageLog(DistributionRefArray <T, DomainType> that) { return(Distribution.GetAverageLog(array, that.array)); }
/// <summary> /// Set the parameters to match the moments of a mixture of two distributions /// </summary> /// <param name="weight1">The first weight</param> /// <param name="a">The first distribution array</param> /// <param name="weight2">The second weight</param> /// <param name="b">The second distribution array</param> public void SetToSum(double weight1, DistributionRefArray <T, DomainType> a, double weight2, DistributionRefArray <T, DomainType> b) { Distribution.SetToSum(array, weight1, a.array, weight2, b.array); }
/// <summary> /// Set the parameters to represent the power of a source distribution to some exponent /// </summary> /// <param name="a">The source distribution array</param> /// <param name="exponent">The exponent</param> public void SetToPower(DistributionRefArray <T, DomainType> a, double exponent) { Distribution.SetToPower(array, a.array, exponent); }
/// <summary> /// Set the parameters to represent the ratio of two distributions /// </summary> /// <param name="numerator">The numerator distribution array</param> /// <param name="denominator">The denominator distribution array</param> public void SetToRatio(DistributionRefArray <T, DomainType> numerator, DistributionRefArray <T, DomainType> denominator) { Distribution.SetToRatio(array, numerator.array, denominator.array); }
/// <summary> /// Set the parameters to represent the product of two distributions /// </summary> /// <param name="a">The first distribution array</param> /// <param name="b">The second distribution array</param> public void SetToProduct(DistributionRefArray <T, DomainType> a, DistributionRefArray <T, DomainType> b) { Distribution.SetToProduct(array, a.array, b.array); }
/// <summary> /// Set the parameters of this distribution to match those of the given distribution (by value) /// </summary> /// <param name="that"></param> public void SetTo(DistributionRefArray <T, DomainType> that) { base.SetTo(that); }