Class NormOps_CDRM


  • public class NormOps_CDRM
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      NormOps_CDRM()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static float normF​(org.ejml.data.CMatrixRMaj a)
      Computes the Frobenius matrix norm:

      normF = Sqrt{ ∑i=1:mj=1:n { aij2} }
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NormOps_CDRM

        public NormOps_CDRM()
    • Method Detail

      • normF

        public static float normF​(org.ejml.data.CMatrixRMaj a)

        Computes the Frobenius matrix norm:

        normF = Sqrt{ ∑i=1:mj=1:n { aij2} }

        This is equivalent to the element wise p=2 norm.

        Parameters:
        a - The matrix whose norm is computed. Not modified.
        Returns:
        The norm's value.