/// <summary> /// Returns a clone of this estimator. /// </summary> /// <returns></returns> public object Clone() { DirichletEstimator result = new DirichletEstimator(Dimension); result.SetTo(this); return(result); }
/// <summary> /// Sets the state of this estimator from the specified estimator. /// </summary> /// <param name="value"></param> public void SetTo(DirichletEstimator value) { N = value.N; Sum.SetTo(value.Sum); Sum2.SetTo(value.Sum2); }