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