On 31/10/13 12:43, P Martin wrote:
To clarify my error, I did not put your suggestion into the ns
declaration. I called it on a separate line of code. I now just have
all of my require statements at the top of my clj files with proper
aliasing and it works fine.
well yes if you do have a name
Ok, I think I get it now. Thanks for the explanation!
To clarify my error, I did not put your suggestion into the ns declaration.
I called it on a separate line of code. I now just have all of my require
statements at the top of my clj files with proper aliasing and it works
fine.
Thanks again
On 30/10/13 16:56, P Martin wrote:
Thanks - I'm still a little confused on the different between use and
require.
'use' is sort of deprecated after it was noticed that people were
abusing it. It's not exactly deprecated because in some cases like
incremental development at the repl it is real
Thanks - I'm still a little confused on the different between use and
require. When I try your suggestion for the matrix library, (require
'(clojure.core.matrix :as mat)), I get:
IllegalArgumentException Don't know how to create ISeq from:
clojure.lang.Keyword clojure.lang.RT.seqFrom (RT.java:
No you're not managing your libraries quite right...If you want to use
"use", which is generally frowned upon, then you don't need the alias.
(use '[clojure.core.matrix])
I would suggest to use 'require' instead though, which takes an alias
(require '(clojure.core.matrix :as mat))
(require '(
Hello,
I am trying to use incanter to plot the results from my ode solving
routines. I use vectorz-clj to maintain the matrices and then want to use
incanter to display. When I go to use incanter, I get the following error:
(use '(incanter core charts pdf))
IllegalStateException tan already re