Return the frobenius norm of a Complex matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static double FrobeniusNorm(
	Complex[,] a
)
Visual Basic (Declaration)
Public Shared Function FrobeniusNorm ( _
	a As Complex(,) _
) As Double
Visual C++
public:
static double FrobeniusNorm(
	array<Complex,2>^ a
)

Parameters

a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular matrix.

Return Value

A double value equal to the frobenius norm of the matrix.

See Also