Package org.ejml.ops

Class CommonOps_BDRM

java.lang.Object
org.ejml.ops.CommonOps_BDRM

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

    Constructors 
    Constructor Description
    CommonOps_BDRM()  
  • Method Summary

    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 Details

  • Method Details

    • 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.