public interface DenseMatrixMultiplication
Modifier and Type | Method and Description |
---|---|
void |
multiply(double[] A,
double[] B,
double[] C,
int m,
int n,
int p)
Multiplies two matrices, C = A %*% B.
|
void multiply(double[] A, double[] B, double[] C, int m, int n, int p)
A
- the left operand, the multiplicand matrix, in row-major representationB
- the right operand, the multiplier matrix, in column-major representation, i.e., row-major representation of transposed BC
- the allocated memory space for storing the result, in row-major representationm
- the number of rows of the multiplicand matrixn
- the number of columns (rows) of the multiplicand (multiplier) matrixp
- the number of columns of the multiplier matrixCopyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.