Fork me on GitHub
#uncomplicate
<
2016-09-11
>
kazuwal15:09:34

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)