Ejemplo n.º 1
0
        /// <summary>
        /// Returns a clone of this estimator.
        /// </summary>
        /// <returns></returns>
        public object Clone()
        {
            GaussianEstimator result = new GaussianEstimator();

            result.SetTo(this);
            return(result);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets the state of this estimator from the specified estimator.
 /// </summary>
 /// <param name="value"></param>
 public void SetTo(GaussianEstimator value)
 {
     mva.SetTo(value.mva);
 }