Exemplo n.º 1
0
        /// <summary>
        /// Returns a copy of the estimator.
        /// </summary>
        /// <returns></returns>
        public object Clone()
        {
            BernoulliEstimator result = new BernoulliEstimator();

            result.SetTo(this);
            return(result);
        }