Example #1
0
        /// <summary>
        /// Returns a clone of this Gamma estimator.
        /// </summary>
        /// <returns></returns>
        public object Clone()
        {
            GammaEstimator result = new GammaEstimator();

            result.SetTo(this);
            return(result);
        }
Example #2
0
 /// <summary>
 /// Sets the state of this estimator from the supplied estimator.
 /// </summary>
 /// <param name="value"></param>
 public void SetTo(GammaEstimator value)
 {
     mva.SetTo(value.mva);
 }