Beispiel #1
0
 /// <summary>
 /// Not supported
 /// </summary>
 /// <param name="numerator"></param>
 /// <param name="denominator"></param>
 /// <param name="forceProper"></param>
 public void SetToRatio(PointMass <T> numerator, PointMass <T> denominator, bool forceProper)
 {
     throw new NotSupportedException();
 }
Beispiel #2
0
 /// <summary>
 /// Returns 0 if the this and that point mass are equal, negative infinity otherwise
 /// </summary>
 /// <param name="that"></param>
 /// <returns>Not implemented</returns>
 public double GetAverageLog(PointMass <T> that)
 {
     return(GetLogAverageOf(that));
 }
Beispiel #3
0
 /// <summary>
 /// Sets this point mass to that point mass
 /// </summary>
 /// <param name="value"></param>
 public void SetTo(PointMass <T> value)
 {
     Point = value.Point;
 }