使用 JTransform 或 JWave 的输出,应该如何计算相位谱?
我是否只是简单地编写一个类似的方法,而是使用以下方法计算相位:
Math.atan2(im / re) * Math.PI * 180
?
我使用以下方法计算幅度谱:
@Override
public void computeSpectrum()
{
// The spectrum into which we store the data
super.spectrum = new double[signal.getSampledAmplitudes().length >> 1];
// Compute the magnitude spectrum of the signal
double re = 0, im = 0;
for (int bin = 0; bin < spectrum.length - 1; ++bin) {
re = super.frequencyDomain[2 * bin];
im = super.frequencyDomain[2 * bin + 1];
super.spectrum[bin] = Math.sqrt(re * re + im * im);
}
}