Package edu.emory.mathcs.jtransforms.fft

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


   */
  public static ComplexNumber[] inverseTransform1DReal(final double[] x, final boolean scale) {
    ArgumentChecker.notEmpty(x, "array of doubles");
    final int n = x.length;
    final double[] a = Arrays.copyOf(x, n);
    DoubleFFT_1D fft = CACHE_1D.get(n);
    if (fft == null) {
      fft = new DoubleFFT_1D(n);
      CACHE_1D.put(n, fft);
    }
    fft.realInverse(a, scale);
    return unpack(a);
  }
View Full Code Here

TOP

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

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.