コード例 #1
0
 /// <summary>
 /// Sets the state of this estimator from the specified estimator.
 /// </summary>
 /// <param name="value"></param>
 public void SetTo(GaussianEstimator value)
 {
     mva.SetTo(value.mva);
 }
コード例 #2
0
 /// <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;
 }
コード例 #3
0
 /// <summary>
 /// Sets the state of this estimator from the supplied estimator.
 /// </summary>
 /// <param name="value"></param>
 public void SetTo(BetaEstimator value)
 {
     mva.SetTo(value.mva);
 }
コード例 #4
0
 /// <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);
 }