Skip to content

Instantly share code, notes, and snippets.

@kurogelee
Created December 29, 2014 10:15
Show Gist options
  • Save kurogelee/1985327c7db47b5dfa3d to your computer and use it in GitHub Desktop.
Save kurogelee/1985327c7db47b5dfa3d to your computer and use it in GitHub Desktop.
clojure.core.matrixのお試しサンプル ref: http://qiita.com/kurogelee/items/67656a04fe9a2374da0d
[net.mikera/core.matrix "0.32.1"]
(def d (m/diagonal-matrix [1 2]))
(def e (m/broadcast [1 5 7] [3 3]))
d
e
(m/sqrt d)
(m/esum d)
(m/emax e)
(m/emap #(* 2 %) e)
[[1 0.0] [0.0 2]]
[[1 5 7] [1 5 7] [1 5 7]]
[[1.0 0.0] [0.0 1.4142135623730951]]
3.0
7
[[2 10 14] [2 10 14] [2 10 14]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment