This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-09-11
Channels
- # bangalore-clj (1)
- # beginners (24)
- # boot (134)
- # boulder-clojurians (2)
- # cider (3)
- # cljs-dev (2)
- # cljsjs (44)
- # clojars (9)
- # clojure (60)
- # clojure-greece (2)
- # clojure-quebec (1)
- # clojure-russia (44)
- # clojure-spec (15)
- # clojure-uk (1)
- # clojurescript (37)
- # core-matrix (1)
- # datomic (7)
- # emacs (1)
- # hoplon (154)
- # liberator (3)
- # mount (2)
- # om (20)
- # onyx (2)
- # pedestal (3)
- # planck (12)
- # re-frame (26)
- # reagent (32)
- # uncomplicate (4)
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