Examples of threeDimensionalBackward()


Examples of jfftw.FFTWReal.threeDimensionalBackward()

    //          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)
    //          Use ArrayUtil class to do the work.
    ArrayUtil.mult(recon,1.0/(width*height*depth));

 
View Full Code Here

Examples of jfftw.FFTWReal.threeDimensionalBackward()

    //          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)
    //          Use ArrayUtil class to do the work.
    ArrayUtil.mult(recon,(float)(1.0/(width*height*depth)));
    // for (int i=0;i<recon.length;i++) {
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.