Closed schlichtanders closed 5 years ago
It works in breeze 0.13.2 as an element-wise product.
If you need a dot-product, you should rather use
a.t * a
or
dot(a, a)
Your version doesn't work because DenseVector
stands for a column-vector and a product of two column-vectors is not defined.
thank you very much for the fast response!!
I was experimenting a bit in the meanwhile and found that `b :* b
does give a element-wise product in breeze 0.12
with scala 2.11.12, breeze 0.12 the following astonishingly basic operation does not work
but throws the following error