Fast Fourier Transform in GDScript
Mostly modified from The javascript FFT on rosetta code.
- Install addon
- Enable plugin from the project-settings
The singleton FFT
is autoloaded at your project start, so you can simply call the static functionality as shown below.
var result = FFT.fft([1, 1, 1, 1, 0, 0, 0, 0])
result = FFT.fft(result)
for item in result:
item.log()
This is an in-place modification for speed, so if you want to ensure functional purity you can duplicate your data array before passing it into the fft
or ifft
functionality. The data array is also returned.
var my_arr = [1, 1, 1, 1, 0, 0, 0, 0]
var result = FFT.fft(my_arr.duplicate(true))
# my_arr remains unchanged
How fast is it?
288.375 ms per 5,000 items.
Not so fast, but this can be used as an example to convert to C++, or for situations where you don't need to calculate every frame.
Alternately you can sample the data, so instead of taking every item you can take every {5th}
item.
This should also be thread safe, so you can run it in the background quite easily using:
var _mutex := Mutex.new()
var _thread := Thread.new()
var _terminated := false
var my_data := []
func _thread_runner() -> void:
while not self._terminated:
OS.delay_msec(100)
mutex.lock()
FTT.ftt(my_data)
mutex.unlock()
func _exit_tree() -> void:
self.terminated = true
self._thread.wait_to_finish()
func _ready() -> void:a
thread.start(Callable(self, "_thread_runner"))
func _process(_delta: float) -> void:
if not _mutex.try_lock():
return
print(my_data)
self._mutex.unlock()
Forward transformation from data-space into fourier-space.
Reverse transformation from fourier-space into data-space.
Returns the real part of each data point.
Returns the imaginary part of each data point.
Ensure that all data items in the array are Complex numbers.
Flips the sign of each amplitude
Returns data[idx][key] for each index.