Uses of Class
org.ujmp.core.doublematrix.impl.BlockDenseDoubleMatrix2D
Packages that use BlockDenseDoubleMatrix2D
-
Uses of BlockDenseDoubleMatrix2D in org.ujmp.core.calculation
Methods in org.ujmp.core.calculation that return BlockDenseDoubleMatrix2DModifier and TypeMethodDescriptionprivate BlockDenseDoubleMatrix2D
MtimesDenseDoubleMatrix2D.blockMultiplyMultiThreaded
(BlockDenseDoubleMatrix2D a, BlockDenseDoubleMatrix2D b, BlockDenseDoubleMatrix2D c) Methods in org.ujmp.core.calculation with parameters of type BlockDenseDoubleMatrix2DModifier and TypeMethodDescriptionprivate 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 BlockDenseDoubleMatrix2DModifier and TypeFieldDescriptionprivate final BlockDenseDoubleMatrix2D
BlockMultiply.matrixA
Source matrices to be processed.private final BlockDenseDoubleMatrix2D
BlockMultiply.matrixB
Source matrices to be processed.private final BlockDenseDoubleMatrix2D
BlockMultiply.matrixC
Source matrices to be processed.Methods in org.ujmp.core.doublematrix.impl that return BlockDenseDoubleMatrix2DMethods in org.ujmp.core.doublematrix.impl with parameters of type BlockDenseDoubleMatrix2DModifier and TypeMethodDescription(package private) final double[]
BlockMatrixLayout.getBlock
(BlockDenseDoubleMatrix2D matrix, int row, int column) Get the block which contains the specified row, column(package private) final double[]
BlockMatrixLayout.toColMajorBlock
(BlockDenseDoubleMatrix2D matrix, int rowStart, int colStart) (package private) final 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 BlockDenseDoubleMatrix2DModifierConstructorDescriptionConstructor 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.