Are there any scientific packages for Lua comparable to Scipy?
Thanks for your time and help :)
From stackoverflow
-
There is the basis for one in Numeric Lua.
-
One can always use Lunatic Python and access scipy inside lua.
> require("python") > numpy = python.import("numpy") > numpy.array ... etc ..
0 comments:
Post a Comment