Mike Anderson
Mike Anderson
Hi, I have a Clojure + ClojureScript project using cljc that I'd like to test using Maven. Both the Clojure and ClojureScript versions need to be tested at the same...
## Library Version(s) 1.1.11 ## Problem I'm experimenting with compojure-api for documenting a new set of APIs with Prismatic Schema. It;s working well so far, though I have one issue...
We need a way to run the ClojureScript tests from within the Clojure test suite, in order to prevent regressions from slipping in when the Clojure code is updated. See...
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...
We don't currently have a default implementation for "determinant". We should ideally have something here that works, even if it is a bit naive / slow.
We need a set of functions for elementwise array comparisons. Thoughts: - Results should probably be numerical arrays, with -1, 0, 1? - Should probably support broadcasting Potential functions: -...
Currently core.matrix loading NDArray loading is extremely slow, sometimes as much as **20secs**. This isn't acceptable for general purpose use of core.matrix, so for the moment I've made NDArray optional...
The API for eigen-decomposition currently has two issues: - Doesn't seem to handle complex eigenvalues well - Requires producing a diagonal matrix of eigenvalues, which may be inefficient I think...
Some dataset implementations (e.g HDF5) support labels on arbitrary dimensions (not just data columns). It would be good to generalise the dataset functionality to support this.