MEstimator
Description
Defines how to suppress the influence of values far from most others on the result.
Values of this enumeration:
- Huber - Suppresses values distant enough linearly according to the distances.
- Tukey - Eliminates values distant enough completely.
namespace MEstimator
{
enum Type
{
Huber,
Tukey
};
}
