/// <summary> /// Clone this estimator /// </summary> /// <returns></returns> public object Clone() { PoissonEstimator result = new PoissonEstimator(); result.SetTo(this); return(result); }
/// <summary> /// Set this estimator to another /// </summary> /// <param name="value"></param> public void SetTo(PoissonEstimator value) { Count = value.Count; Mean = value.Mean; }