Ejemplo n.º 1
0
        /// <summary>
        /// Clone this estimator
        /// </summary>
        /// <returns></returns>
        public object Clone()
        {
            PoissonEstimator result = new PoissonEstimator();

            result.SetTo(this);
            return(result);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Set this estimator to another
 /// </summary>
 /// <param name="value"></param>
 public void SetTo(PoissonEstimator value)
 {
     Count = value.Count;
     Mean  = value.Mean;
 }