Click or drag to resize

ComplexStatsRMSError(Complex, Complex) Method

Calculates the root mean squared (RMS) error between two sets of data.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static double RMSError(
	Complex[] alpha,
	Complex[] beta
)

Parameters

alpha  Complex
The first data set.
beta  Complex
The second data set.

Return Value

Double
The root mean squared error between alpha and beta.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when alpha or beta is .
ArgumentExceptionThrown when the lengths of alpha and beta are not equal.
See Also