/// <summary> /// Returns a copy of this estimator. /// </summary> /// <returns></returns> public object Clone() { BetaEstimator result = new BetaEstimator(); result.SetTo(this); return(result); }
/// <summary> /// Sets the state of this estimator from the supplied estimator. /// </summary> /// <param name="value"></param> public void SetTo(BetaEstimator value) { mva.SetTo(value.mva); }