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