Examples of threeDimensionalForward()


Examples of jfftw.FFTWReal.threeDimensionalForward()

    FFTWReal fftw = new FFTWReal();

    //          Take out of place forward FFT,
    //          return a double[] which hold Hermition
    //          complex array in interleaved format.
    double ft[] = fftw.threeDimensionalForward(width,height,depth,d);
   
    //          Reconstruct, again out of place, back to real space
    double recon[] = fftw.threeDimensionalBackward(width,height,depth,ft);
   
    //          Scale the inverse by 1/N to (no scale in FFTW)
View Full Code Here

Examples of jfftw.FFTWReal.threeDimensionalForward()

    FFTWReal fftw = new FFTWReal();

    //          Take out of place forward FFT,
    //          return a double[] which hold Hermition
    //          complex array in interleaved format.
    float ft[] = fftw.threeDimensionalForward(width,height,depth,d);
   
    //          Reconstruct, again out of place, back to real space
    float recon[] = fftw.threeDimensionalBackward(width,height,depth,ft);
   
    //          Scale the inverse by 1/N to (no scale in FFTW)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.