Click or drag to resize

NMathFunctionsFrobeniusNorm Method

Calculates the Frobenius norm.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static double FrobeniusNorm(
	DoubleMatrix A
)

Parameters

A  DoubleMatrix
A matrix.

Return Value

Double
Frobenius norm.
Remarks
The Frobenius norm of A = (aij) is just the square root of the sum of all aij squared, which is also equal to the square root of the trace of A*A (A* = conjugate transpose of A).
See Also