ojAlgo 中的元素乘法两个矩阵或 PrimitiveDenseStores

Elementwise multiplication two matrices or PrimitiveDenseStores in ojAlgo

谁能告诉我如何在 ojAlgo 中将两个矩阵的对应元素相乘? 正在寻找 c[i][j] = a[i][j] * b[i][j]

的块函数

有几种方法可以做到这一点。这是另一种选择:

matrixA.operateOnMatching(MULTIPLY, matrixB).supplyTo(matrixC);

其中 MULTIPLY 来自静态导入​​ (org.ojalgo.function.constant.PrimitiveMath)。