/// <summary> /// Returns a clone of this Gamma estimator. /// </summary> /// <returns></returns> public object Clone() { GammaEstimator result = new GammaEstimator(); result.SetTo(this); return(result); }
/// <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); }