Package org.ejml.ops

Class CommonOps_BDRM


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

      Constructors 
      Constructor Description
      CommonOps_BDRM()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void transposeSquare​(BMatrixRMaj mat)
      In-place transpose for a square matrix.
      • Methods inherited from class java.lang.Object

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

      • CommonOps_BDRM

        public CommonOps_BDRM()
    • Method Detail

      • transposeSquare

        public static void transposeSquare​(BMatrixRMaj mat)
        In-place transpose for a square matrix. On most architectures it is faster than the standard transpose algorithm, but on most modern computers it's slower than block transpose.
        Parameters:
        mat - The matrix that is transposed in-place. Modified.