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