我正在尝试使用 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];
}