/* * 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 junit.framework.TestCase; import com.softsynth.math.FourierMath; public class TestFFT extends TestCase { @Override protected void setUp() throws Exception { super.setUp(); } @Override protected void tearDown() throws Exception { super.tearDown(); } 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("magnitude", 0.0, magnitudes[bin-1], 0.000001); assertEquals("magnitude", amplitude, magnitudes[bin], 0.000001); assertEquals("magnitude", 0.0, magnitudes[bin+1], 0.000001); /* 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("magnitude", 0.0f, magnitudes[bin-1], 0.000001); assertEquals("magnitude", amplitude, magnitudes[bin], 0.000001); assertEquals("magnitude", 0.0f, magnitudes[bin+1], 0.000001); /* 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