public class CNormOps
extends java.lang.Object
| Constructor and Description |
|---|
CNormOps() |
| Modifier and Type | Method and Description |
|---|---|
static double |
normF(org.ejml.data.CDenseMatrix64F a)
Computes the Frobenius matrix norm:
normF = Sqrt{ ∑i=1:m ∑j=1:n { aij2} } |
public static double normF(org.ejml.data.CDenseMatrix64F a)
Computes the Frobenius matrix norm:
normF = Sqrt{ ∑i=1:m ∑j=1:n { aij2} }
This is equivalent to the element wise p=2 norm. See #fastNormF for another implementation
that is faster, but more prone to underflow/overflow errors.
a - The matrix whose norm is computed. Not modified.