public class TransposeAlgs_DDRM
extends java.lang.Object
| Constructor and Description |
|---|
TransposeAlgs_DDRM() |
| Modifier and Type | Method and Description |
|---|---|
static void |
block(org.ejml.data.DMatrix1Row A,
org.ejml.data.DMatrix1Row A_tran,
int blockLength)
Performs a transpose across block sub-matrices.
|
static void |
square(org.ejml.data.DMatrix1Row mat)
In-place transpose for a square matrix.
|
static void |
standard(org.ejml.data.DMatrix1Row A,
org.ejml.data.DMatrix1Row A_tran)
A straight forward transpose.
|
public static void square(org.ejml.data.DMatrix1Row mat)
mat - The matrix that is transposed in-place. Modified.public static void block(org.ejml.data.DMatrix1Row A,
org.ejml.data.DMatrix1Row A_tran,
int blockLength)
A - Original matrix. Not modified.A_tran - Transposed matrix. Modified.blockLength - Length of a block.public static void standard(org.ejml.data.DMatrix1Row A,
org.ejml.data.DMatrix1Row A_tran)
A - Original matrix. Not modified.A_tran - Transposed matrix. Modified.