DescriptiveStatisticsRootMeanSquare Method |
Calculates the root mean square (RMS) of a list of doubles.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double RootMeanSquare(
IList<double> dataList
)
Public Shared Function RootMeanSquare (
dataList As IList(Of Double)
) As Double
public:
static double RootMeanSquare(
IList<double>^ dataList
)
static member RootMeanSquare :
dataList : IList<float> -> float
Parameters
- dataList
- Type: System.Collections.GenericIListDouble
The list of doubles to use to calculate the RMS.
Return Value
Type:
DoubleThe root mean square value.
Exceptions See Also