CircularDescriptiveStatisticsMeanDifference Method |
Calculates the mean angular distance between angles in a list.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic static double MeanDifference(
IList<double> dataList
)
Public Shared Function MeanDifference (
dataList As IList(Of Double)
) As Double
public:
static double MeanDifference(
IList<double>^ dataList
)
static member MeanDifference :
dataList : IList<float> -> float
Parameters
- dataList
- Type: System.Collections.GenericIListDouble
The list of angles to use to calculate the mean difference.
Return Value
Type:
DoubleThe mean distance between pairs of data points.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException |
Thrown when dataList is .
|
| ArgumentException |
Thrown when dataList is empty.
|
RemarksThe output range is [0, π/2].
See Also