TheilSenVariant

Description

Defines a specific method of the Theil-Sen family.

Values of this enumeration:

  • TheilSen - The original Theil-Sen method.
  • Siegel - Siegel's improvement assuring 50% breakdown point.

namespace TheilSenVariant
{
	enum Type
	{
		TheilSen,
		Siegel
	};
}