Minim FFTライブラリを使用しようとしていますが、サンプルスケッチを実行すると、次の問題が発生します。
The constructor FFT(int, float) is undefined.
このJavaは、他のコンストラクターを使用しようとしていると考えていると思いますが、それを解決する方法を一生理解することはできません。
コードの関連部分は次のとおりです。
import ddf.minim.analysis.*;
import ddf.minim.*;
FFT fft;
float[] buffer;
int bsize = 512;
void setup()
{
size(512, 300, P3D);
// create an FFT with a time-domain size the same as the size of buffer
// it is required that these two values be the same
// and also that the value is a power of two
fft = new FFT(bsize, 44100);
buffer = new float[bsize];
}