/* * Copyright 2009 Phil Burk, Mobileer Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.jsyn.util; import com.softsynth.math.FourierMath; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import static org.junit.jupiter.api.Assertions.assertEquals; public class TestFFT { private static final Logger LOGGER = LoggerFactory.getLogger(TestFFT.class); public void checkSingleSineDouble(int size, int bin) { double[] ar = new double[size]; double[] ai = new double[size]; double[] magnitudes = new double[size]; double amplitude = 1.0; addSineWave(size, bin, ar, amplitude); FourierMath.transform(1, size, ar, ai); FourierMath.calculateMagnitudes(ar, ai, magnitudes); assertEquals(0.0, magnitudes[bin-1], 0.000001, "magnitude"); assertEquals(amplitude, magnitudes[bin], 0.000001, "magnitude"); assertEquals(0.0, magnitudes[bin+1], 0.000001, "magnitude"); /* for (int i = 0; i < magnitudes.length; i++) { System.out.printf("%d = %9.7f\n", i, magnitudes[i]); } */ } public void checkSingleSineFloat(int size, int bin) { float[] ar = new float[size]; float[] ai = new float[size]; float[] magnitudes = new float[size]; double amplitude = 1.0; addSineWave(size, bin, ar, amplitude); FourierMath.transform(1, size, ar, ai); FourierMath.calculateMagnitudes(ar, ai, magnitudes); assertEquals(0.0f, magnitudes[bin-1], 0.000001, "magnitude"); assertEquals(amplitude, magnitudes[bin], 0.000001, "magnitude"); assertEquals(0.0f, magnitudes[bin+1], 0.000001, "magnitude"); /* for (int i = 0; i < magnitudes.length; i++) { System.out.printf("%d = %9.7f\n", i, magnitudes[i]); } */ } public void checkMultipleSine(int size, int[] bins, double[] amplitudes) { double[] ar = new double[size]; double[] ai = new double[size]; double[] magnitudes = new double[size]; for(int i = 0; i