core.matrix
core.matrix copied to clipboard
core.matrix : Multi-dimensional array programming API for Clojure
``` clojure (defn reshape-time-test [] (let [n-rows 100 n-cols 1000 src-array (double-array (* n-rows n-cols))] (println "reshape time") (time (dotimes [idx 100] (m/reshape src-array [n-rows n-cols]))) (println "c-for time") (time...
Running lein figwheel on a fresh clone of aljabr modified to use core.matrix 0.55.1-SNAPSHOT, one gets the following warning on clojure/core/matrix.cljc: ``` WARNING: Use of undeclared Var clojure.core.matrix/Throwable at line...
Running `lein figwheel` on a fresh clone of aljabr modified to use core.matrix 0.55.1-SNAPSHOT, one gets the following warning on impl/defaults.cljc: ``` WARNING: No such namespace: Long, could not locate...
The top level README.md for core.matrix says: > To develop for clojurescript you will need to use the cljs-dev profile > like this: > > lein with-profile +cljs-dev repl >...
Hi All, We need to ensure that every core.matrix has a Clojure CA signed in order to transition core.matrix into official Clojure Contrib status. This means that everyone will need...
Currently get columns is a little ambiguous. We should clarify bahaviour and add tests to verify. Intent I think is always to retuen a two-dimensional array (a sequable object where...
Is it possible to implement this library in ClojureScript? Or at least some parts of it.
Hi there, So it appears that passing a dataset (as opposed to a plain matrix) to `pm` just prints the data, not column names. This is actually a really easy...
I find the name length confusing, because on many Java datatypes the length function returns the array length. If length returns the magnitude, then why not rename it to magnitude?
I understand the 'e' prefix to stand for element-wise, but I find this not always intuitive. The following functions I consider to be element-wise: - emap - efilter - emul...