예제 #1
0
 /// <summary>
 /// Gets the mode of the distribution
 /// </summary>
 /// <returns>The value with the highest probability</returns>
 public T GetMode()
 {
     return(ConvertFromInt(disc.GetMode()));
 }