How does one perform element wise operations (specifically multiplication) on a matrix in ojAlgo ?
Supposed that I have a storeA and storeB and would like to perform a binary operation f on each of the elements of A and B as the input respectively and obtain the output storeC.
Example
[1 2 3]
[4 5 6] -- A
[1 3 9]
[2 4 6] -- B
f - multiply
[1 6 27]
[8 20 36] -- C
What are the approaches that I can take ?