| DoubleComplexMatrixFrobeniusNorm Method |
Computes the Frobenius norm for this matrix.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public double FrobeniusNorm()
Public Function FrobeniusNorm As Double
public:
double FrobeniusNorm()
member FrobeniusNorm : unit -> float
Return Value
DoubleThe Frobenius norm of this matrix.
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