I'm using the breeze package on scala. I simply want do to a matrix product: A*At. However I get this error:
could not find implicit value for parameter op: breeze.linalg.operators.OpMulMatrix.Impl2[breeze.linalg.Matrix[Double],breeze.linalg.Transpose[breeze.linalg.Matrix[Double]],That]
I'm quite sure the problem is in the input matrix's format since it comes from a function I wrote, but I don't know how I could solve it.
Thanks in advance