You are here: Start » AVL.NET » AVL.LinearRegression_M Method

AVL.LinearRegression_M Method

Computes linear regression of given point set using selected M-estimator for outlier suppression.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void LinearRegression_M(
	float[] inYValues,
	float[] inXValues,
	AvlNet.MEstimator inOutlierSuppression,
	float inClippingFactor,
	int inIterationCount,
	AvlNet.LinearFunction? inInitialLinearFunction,
	out AvlNet.LinearFunction outLinearFunction,
	out float[] outEstimatedValues,
	out float[] outResiduals
)

Parameters

Name Type Range Default Description
inYValuesfloatSequence of ordinates.
inXValuesfloatSequence of abscissae, or {0, 1, 2, ...} by default. Default value: atl::NIL, or null.
inOutlierSuppressionAvlNet.MEstimator
inClippingFactorfloat<0.675f, 6.0f>2.5fMultitude of standard deviation within which points are considered inliers. Default value: 2.5f.
inIterationCountint<0, INF>5Number of iterations of outlier suppressing algorithm. Default value: 5.
inInitialLinearFunctionAvlNet.LinearFunction?Initial approximation of the output linear function (if available). Default value: atl::NIL, or null.
outLinearFunctionAvlNet.LinearFunctionLinear function approximating the given point set.
outEstimatedValuesfloatThe result of application of the computed function to the X values.
outResidualsfloatDifference between an input Y value and the corresponding estimated value.

Errors

Error type Description
DomainError Inconsistent size of arrays in LinearRegression_M.

See also