Calculates the square of the Frobenius norm of the difference between two matrices.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static double FrobNormDiffSqr(
	DoubleMatrix A,
	DoubleMatrix B
)
Visual Basic (Declaration)
Public Shared Function FrobNormDiffSqr ( _
	A As DoubleMatrix, _
	B As DoubleMatrix _
) As Double
Visual C++
public:
static double FrobNormDiffSqr(
	DoubleMatrix^ A, 
	DoubleMatrix^ B
)

Return Value

The square of the Frobenius norm of the difference between the two matrices.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown when A, B are of different sizes.

See Also