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)of course. this is a standard blas function called rank. http://neanderthal.uncomplicate.org/codox/uncomplicate.neanderthal.core.html#var-rank.21
@blueberry Thanks