Calculates the root mean square of the given data.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public static double RMS(
	int[] data
)
Visual Basic (Declaration)
Public Shared Function RMS ( _
	data As Integer() _
) As Double
Visual C++
public:
static double RMS(
	array<int>^ data
)

Parameters

data
Type: array< System..::.Int32 >[]()[]
An array.

Return Value

Root mean square.

See Also