Uses of Class
org.ujmp.core.doublematrix.impl.BlockDenseDoubleMatrix2D
-
Packages that use BlockDenseDoubleMatrix2D Package Description org.ujmp.core.calculation org.ujmp.core.doublematrix.impl -
-
Uses of BlockDenseDoubleMatrix2D in org.ujmp.core.calculation
Methods in org.ujmp.core.calculation that return BlockDenseDoubleMatrix2D Modifier and Type Method Description private BlockDenseDoubleMatrix2D
MtimesDenseDoubleMatrix2D. blockMultiplyMultiThreaded(BlockDenseDoubleMatrix2D a, BlockDenseDoubleMatrix2D b, BlockDenseDoubleMatrix2D c)
Methods in org.ujmp.core.calculation with parameters of type BlockDenseDoubleMatrix2D Modifier and Type Method Description private BlockDenseDoubleMatrix2D
MtimesDenseDoubleMatrix2D. blockMultiplyMultiThreaded(BlockDenseDoubleMatrix2D a, BlockDenseDoubleMatrix2D b, BlockDenseDoubleMatrix2D c)
-
Uses of BlockDenseDoubleMatrix2D in org.ujmp.core.doublematrix.impl
Fields in org.ujmp.core.doublematrix.impl declared as BlockDenseDoubleMatrix2D Modifier and Type Field Description private BlockDenseDoubleMatrix2D
BlockMultiply. matrixA
Source matrices to be processed.private BlockDenseDoubleMatrix2D
BlockMultiply. matrixB
Source matrices to be processed.private BlockDenseDoubleMatrix2D
BlockMultiply. matrixC
Source matrices to be processed.Methods in org.ujmp.core.doublematrix.impl that return BlockDenseDoubleMatrix2D Modifier and Type Method Description BlockDenseDoubleMatrix2D
BlockDenseDoubleMatrix2D. clone()
Methods in org.ujmp.core.doublematrix.impl with parameters of type BlockDenseDoubleMatrix2D Modifier and Type Method Description (package private) double[]
BlockMatrixLayout. getBlock(BlockDenseDoubleMatrix2D matrix, int row, int column)
Get the block which contains the specified row, column(package private) double[]
BlockMatrixLayout. toColMajorBlock(BlockDenseDoubleMatrix2D matrix, int rowStart, int colStart)
(package private) double[]
BlockMatrixLayout. toRowMajorBlock(BlockDenseDoubleMatrix2D matrix, int rowStart, int colStart)
private static void
BlockMultiply. verifyInput(BlockDenseDoubleMatrix2D a, BlockDenseDoubleMatrix2D b, BlockDenseDoubleMatrix2D c, int fromM, int toM, int fromN, int toN, int fromK, int toK)
Constructors in org.ujmp.core.doublematrix.impl with parameters of type BlockDenseDoubleMatrix2D Constructor Description BlockDenseDoubleMatrix2D(BlockDenseDoubleMatrix2D m)
Constructor which takes an existing BlockMatrix to copy data and structure from.BlockMultiply(BlockDenseDoubleMatrix2D a, BlockDenseDoubleMatrix2D b, BlockDenseDoubleMatrix2D c, int fromM, int toM, int fromN, int toN, int fromK, int toK)
Constructor taking the two matrices being multiplied, the target matrix C and the range of rows and columns to multiply.
-