Are there any scientific packages for Lua comparable to Scipy?
Thanks for your time and help :)
Are there any scientific packages for Lua comparable to Scipy?
Thanks for your time and help :)
One can always use Lunatic Python and access scipy inside lua.
> require("python")
> numpy = python.import("numpy")
> numpy.array ... etc ..