public class TransposeAlgs extends Object
| Constructor and Description |
|---|
TransposeAlgs() |
| Modifier and Type | Method and Description |
|---|---|
static void |
block(RowD1Matrix64F A,
RowD1Matrix64F A_tran,
int blockLength)
Performs a transpose across block sub-matrices.
|
static void |
square(RowD1Matrix64F mat)
In-place transpose for a square matrix.
|
static void |
standard(RowD1Matrix64F A,
RowD1Matrix64F A_tran)
A straight forward transpose.
|
public static void square(RowD1Matrix64F mat)
mat - The matrix that is transposed in-place. Modified.public static void block(RowD1Matrix64F A, RowD1Matrix64F A_tran, int blockLength)
A - Original matrix. Not modified.A_tran - Transposed matrix. Modified.blockLength - Length of a block.public static void standard(RowD1Matrix64F A, RowD1Matrix64F A_tran)
A - Original matrix. Not modified.A_tran - Transposed matrix. Modified.Copyright © 2013. All Rights Reserved.