Greetings, I have released a first version of a Lua FFT Package that implements a very fast algorithm and uses complex numbers.
The Source is available at: http://www.mindfarming.de/luafft/downloads/luafft-1.0.zip The Rockspec is available under http://www.mindfarming.de/luafft/downloads/luafft-1.0-1.rockspec -------------------------------------------------------------------------------------------------------- package = "LuaFFT" version = "1.0-1" source = { url = "http://www.mindfarming.de/luafft/downloads/luafft-1.0.zip" } description = { summary = "Lua package that includes functions for Fast Fourier Transformations.", detailed = [[ This is a port of the KissFFT Library which is a C implementation of the Fast Fourier Transformation (FFT). It contains an easy-to-use function to carry out FFTs. For complex numbers, a module from the Numeric Lua Library has been used. ]], homepage = "http://www.mindfarming.de/luafft", license = "MIT/X11" } dependencies = { "lua >= 5.1" } build = { type = "builtin", modules = { luafft = "src/luafft.lua" }, copy_directories = { "docs", "samples"} } Regards, Ben
_______________________________________________ Luarocks-developers mailing list [email protected] http://lists.luaforge.net/cgi-bin/mailman/listinfo/luarocks-developers
