MatLisp: A library for scientific computation in Common Lisp
11–20 of 29 posts
Re: MatLisp: A library for scientific computation in Common Lisp
#12Basically, I'm just not sure where to start with such a large project. Currently I'm just trying to learn the language and ecosystem (how the FFI works, etc.) to the point where something like this may be feasible. I want to switch over to using scheme as my de-facto language, and this would be the number 1 library that would make it possible; Unfortunately, the lack of resources on the web for learning how to make good lisp-like APIs is lacking, and I really need some help figuring out how to do it. Unlike Python, we don't have PEP 8, and I think the difficulty in constructing a domain specific language for numerics is under-appreciated.
Thoughts? Tips? It seems MatLisp has been around for some time (2000, I guess?), so there's got to be someone with considerable experience here, right?
Re: MatLisp: A library for scientific computation in Common Lisp
#13I'm actually super curious, how many computationally heavy science folks are writing code in Lisp? Seems much more elegant than, say, Matlab.
My favorite E&M simulator is MEEP, http://ab-initio.mit.edu/wiki/index.php/Meep . Although written in C++, it uses MIT-Scheme/guile as the control language. This is a problem because the steep learning curve discourages undergraduate students.
https://en.wikipedia.org/wiki/Learning_curve
MEEP looks interesting. Filed, for future use.
Re: MatLisp: A library for scientific computation in Common Lisp
#14I've personally been interested in implementing something similar on top of BLAS / LAPACK in Scheme (either CHICKEN or Guile). Any tips from the authors? Any tips at all? My main questions concern how you decided on an API, or how you decided to construct primitives (matrices, ndarrays) within the library itself? Basically, I'm just not sure where to start with such a large project. Currently I'm just trying to learn…
That said, I'd recommend checking out Numpy, and projects in lisp lisp scmutils, lisp-matrix, matlisp, femlisp...
Re: MatLisp: A library for scientific computation in Common Lisp
#15I'm actually super curious, how many computationally heavy science folks are writing code in Lisp? Seems much more elegant than, say, Matlab.
Thankfully, however, one can tweak it in so astonishing a way - I still miss parameterized types though - that once you realize the nature of your problem, and put in lots of due work, things tend to become easy in the long run; I particularly adore being able to write iterate macros (adding new "for" clauses").
That said, Matlisp is still in a stage of infancy ("research grade"), and while I welcome contributions, it should be noted that it is not yet a replacement for R/Numpy/MATLAB, atleast not for the casual user.
Re: MatLisp: A library for scientific computation in Common Lisp
#16I'm actually super curious, how many computationally heavy science folks are writing code in Lisp? Seems much more elegant than, say, Matlab.
What we use: C/C++, Matlab, Python, R, Fortran, and the occasional Mathematica. I myself have been getting into Julia.
Re: MatLisp: A library for scientific computation in Common Lisp
#17I've personally been interested in implementing something similar on top of BLAS / LAPACK in Scheme (either CHICKEN or Guile). Any tips from the authors? Any tips at all? My main questions concern how you decided on an API, or how you decided to construct primitives (matrices, ndarrays) within the library itself? Basically, I'm just not sure where to start with such a large project. Currently I'm just trying to learn…
Getting API right is hard because you have no idea about the scope of your project at first. It is easy to get initial inspiration from other projects, but I still believe that having an API set in stone is a bad idea; Matlisp itself has literally been rewritten ~4 times. That said, I'd recommend checking out Numpy, and projects in lisp lisp scmutils, lisp-matrix, matlisp, femlisp...
Re: MatLisp: A library for scientific computation in Common Lisp
#18There is a new - more MOP-py - branch I'm working on, which is yet to be finished (ping me if you'd like to see a preview).
The classes (and methods) are now "dynamically compiled" -like FEMLISP.
Re: MatLisp: A library for scientific computation in Common Lisp
#19Re: MatLisp: A library for scientific computation in Common Lisp
#20I've personally been interested in implementing something similar on top of BLAS / LAPACK in Scheme (either CHICKEN or Guile). Any tips from the authors? Any tips at all? My main questions concern how you decided on an API, or how you decided to construct primitives (matrices, ndarrays) within the library itself? Basically, I'm just not sure where to start with such a large project. Currently I'm just trying to learn…
Getting API right is hard because you have no idea about the scope of your project at first. It is easy to get initial inspiration from other projects, but I still believe that having an API set in stone is a bad idea; Matlisp itself has literally been rewritten ~4 times. That said, I'd recommend checking out Numpy, and projects in lisp lisp scmutils, lisp-matrix, matlisp, femlisp...
The biggest concern I have with re-implementing Numpy in Scheme / Lisp is that it's very object oriented. Certainly, many of the ufunc methods in Numpy can be composed or chained in a very functional style, but at its core Numpy is Pythonic, and Pythonic code means using OOP for abstraction. Mainly, I'm concerned with how one actually transfers this over into Lisp like languages. Sure, CHICKEN has coops, Guile has goops, which are basically Common Lisps' CLOS, but taking the concept of Numpy and expressing it in a CLOS-like system sometimes just feels wrong.
That said, I think the guys behind clojure.core.matrix have done some work facing similar challenges, but I don't really know enough to evaluate if they've done the right thing. Moreover, Clojure itself almost makes this job easier, because it has interfaces / protocols from the get-go, whereas Scheme and CL don't quite share the same properties.
In any case, thanks again for your reply. If you ever write anything regarding those 4 rewrites, or if you have written anything regarding your decisions on refactoring and improving an API, I'd love to read it. I know a lot of people hold Numpy up as a gold standard, but I still find it very hard to put in explicit terms what makes programming with Numpy arrays more pleasant than using MATLAB arrays, Eigen (C++) matrices / vectors, or other similar systems.