Using the Matrix<double>
from Mathdotnet.Numerics, I am willing to apply a custom aggregating function for each cell of the resulting matrix of a multiply operation.
For instance, on a 2x2 matrix:
My will is to have a specific f
function (the one above, shown as example, is the default matrix/vector multiplication).
Is there an existing method in the Matrix world that takes such a Func<Vector<double>, Vector<double>, double>
argument?