views:

762

answers:

2

Are there any scientific packages for Lua comparable to Scipy?

Thanks for your time and help :)

+2  A: 

There is the basis for one in Numeric Lua.

Doug Currie
+2  A: 

One can always use Lunatic Python and access scipy inside lua.

> require("python")
> numpy = python.import("numpy")
> numpy.array ... etc ..
nosklo