You are here: Start » AVL.NET » Function Reference » Geometry 2D » Geometry 2D Fitting » AVL.FitLineToPoints_TheilSen

AVL.FitLineToPoints_TheilSen

Approximates points with a line using TheilSen algorithm, optionally with Siegel's improvement.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FitLineToPoints_TheilSen
(
	IList<AvlNet.Point2D> inPoints,
	AvlNet.TheilSenVariant inVariant,
	out AvlNet.Line2D outLine
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>Input points.
inVariantAvlNet.TheilSenVariantSwitches between Theil-Sen and Siegel methods.
outLineAvlNet.Line2DFitted line.

Errors

List of possible exceptions:

Error type Description
DomainError Empty array of points in FitLineToPoints_TheilSen.
DomainError Range exceeds the input point array in FitLineToPoints_TheilSen.

Function Overrides

See also