lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


--- El lun 26-dic-11, Alex Bradbury <asb@asbradbury.org> escribió:
> 
> Or of course there's LuaJIT 2 [1], as used by GSL Shell [2]
> with great success.
> 
> [1]: http://luajit.org
> [2]: http://www.nongnu.org/gsl-shell/
> 
> Alex

This is great! I wasn't aware of a GSL binding. 
I've used GSL for small college projects and I liked it. 
I also used scipy (which uses LAPACK for linear alg) 
and I liked it even more. 

IMHO this is the way to go for numerical projects: 
script language (lua, python, whatever),
on top of lower-level compiled libs (fortran, C or whatever).

Ezequiel.