uncomplicate

ohsudo 2016-09-11T15:26:34.000003Z

Is it possible to compute the outer product of two vectors using neanderthal? eg if x and y are vectors in vanilla Clojure this would simply be

(for [x [360 400]
      y [70  690]]
  (* x y))
;=> (25200 248400 28000 276000)

2016-09-11T17:35:44.000006Z

of course. this is a standard blas function called rank. http://neanderthal.uncomplicate.org/codox/uncomplicate.neanderthal.core.html#var-rank.21

2016-09-11T17:36:38.000007Z

@adebesin:

👍 1
ohsudo 2016-09-11T19:13:43.000008Z

@blueberry Thanks