Fast Fourier Transform in Java

Possible duplicate:
Reliable and fast FFT in Java

I want to implement a fast Fourier transform transform in java. Is there any library in java for computing in Fourier transform and I also want to know about audio libraries in java.

+4
source share
1 answer

There may be a duplicate, but you will probably have the difficulty associated with setting up the JNI / NDK. Consider a complete java solution with JTransforms

+5
source

Source: https://habr.com/ru/post/1338243/


All Articles