Click or drag to resize

ComplexStatsRMSError(Complex32, Complex32) 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 float RMSError(
	Complex32[] alpha,
	Complex32[] beta
)

Parameters

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

Return Value

Single
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