Uses of Class
org.ujmp.core.doublematrix.impl.BlockMatrixLayout.BlockOrder
-
Packages that use BlockMatrixLayout.BlockOrder Package Description org.ujmp.core.doublematrix.impl -
-
Uses of BlockMatrixLayout.BlockOrder in org.ujmp.core.doublematrix.impl
Fields in org.ujmp.core.doublematrix.impl declared as BlockMatrixLayout.BlockOrder Modifier and Type Field Description BlockMatrixLayout.BlockOrder
BlockMatrixLayout. blockOrder
Whether this block is laid out in row-major (true) or column-major (false) order.Methods in org.ujmp.core.doublematrix.impl that return BlockMatrixLayout.BlockOrder Modifier and Type Method Description BlockMatrixLayout.BlockOrder
BlockDenseDoubleMatrix2D. setBlockOrder(BlockMatrixLayout.BlockOrder order)
Change layout of blocks in this matrix (e.g.BlockMatrixLayout.BlockOrder
BlockMatrixLayout.BlockOrder. transpose()
static BlockMatrixLayout.BlockOrder
BlockMatrixLayout.BlockOrder. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BlockMatrixLayout.BlockOrder[]
BlockMatrixLayout.BlockOrder. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.ujmp.core.doublematrix.impl with parameters of type BlockMatrixLayout.BlockOrder Modifier and Type Method Description BlockMatrixLayout.BlockOrder
BlockDenseDoubleMatrix2D. setBlockOrder(BlockMatrixLayout.BlockOrder order)
Change layout of blocks in this matrix (e.g.Constructors in org.ujmp.core.doublematrix.impl with parameters of type BlockMatrixLayout.BlockOrder Constructor Description BlockDenseDoubleMatrix2D(double[][] values, int blockStripeSize, BlockMatrixLayout.BlockOrder blockOrder)
Create a block matrix from a jagged array.BlockDenseDoubleMatrix2D(int rows, int cols, int blockStripeSize, BlockMatrixLayout.BlockOrder blockOrder)
Create a new matrix with the specified size, and specified block stripe size.BlockDenseDoubleMatrix2D(int rows, int cols, BlockMatrixLayout.BlockOrder blockOrder)
Create a new matrix with the given size (rows, cols) and block layout.BlockDenseDoubleMatrix2D(Matrix m, int blockStripeSize, BlockMatrixLayout.BlockOrder blockOrder)
Constructor which takes a Matrix and a proposed default block stripe size.BlockMatrixLayout(int rows, int columns, int blockStripe, BlockMatrixLayout.BlockOrder blockOrder)
-