Click or drag to resize

CircularDescriptiveStatistics.DispersionAboutAngle Method

Calculates the dispersion of a list of angles about a given angle.

Namespace:  AGI.Foundation
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public static double DispersionAboutAngle(
	IList<double> dataList,
	double angle
)

Parameters

dataList
Type: System.Collections.Generic.IList<Double>
The list of angles to use to calculate the dispersion.
angle
Type: System.Double
The angle around which dispersion is measured.

Return Value

Type: Double
The measure of how the data points are dispersed about the given angle.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when dataList is null.
ArgumentException Thrown when dataList is empty.
Remarks
The output range is [0, π]. Winding is ignored.
See Also