Package edu.emory.mathcs.jtransforms.fft

Examples of edu.emory.mathcs.jtransforms.fft.DoubleFFT_2D


   
  }

  public void testFFT() {

    DoubleFFT_2D fft = new DoubleFFT_2D(10,10);
    double[][] field = new double[10][20];

    for (int i = 0; i < 10; i++) {
      for (int j = 0; j < 20; j++) {
        field[i][j] = 0;
      }
    }

    fft.complexForward(field);

  }
View Full Code Here

TOP

Related Classes of edu.emory.mathcs.jtransforms.fft.DoubleFFT_2D

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.