Re: matlab like clojure

2009-06-15 Thread hoeck
Hi, I've got a simple implementation of the Jacobi-method for approximating the solution of a linear system of equations, maybe your interested in this. (defn jacobi-x-step [m b x i] "Calculate a part of the solution of a jacobi-method step" ;; 1 ;; xi = --- (bi - ( sum aij *

Re: matlab like clojure

2009-06-15 Thread Konrad Hinsen
On Jun 15, 2009, at 16:23, Bugs wrote: > I'm a newbie on Clojure and LISP, and I'm interasted in matlab > replacement languages. > It is just my hobby, but I'm trying to implement a matlab like > language extension. > > I think that Clojure has ability enough to be numerical language like > a Mat

Re: matlab like clojure

2009-06-15 Thread Parth
On Jun 15, 7:23 pm, Bugs wrote: > Hi, everyone. > > I'm a newbie on Clojure and LISP, and I'm interasted in matlab > replacement languages. > It is just my hobby, but I'm trying to implement a matlab like > language extension. > > I think that Clojure has ability enough to be numerical language

matlab like clojure

2009-06-15 Thread Bugs
Hi, everyone. I'm a newbie on Clojure and LISP, and I'm interasted in matlab replacement languages. It is just my hobby, but I'm trying to implement a matlab like language extension. I think that Clojure has ability enough to be numerical language like a Matlab or Mathematica. So, I'm finding e