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
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidtransposeSquare(BMatrixRMaj mat)In-place transpose for a square matrix.
-
-
-
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.
-
-