A B C E F G I J L M P R S T U W

A

add(String) - Static method in class jfftw.Wisdom
Loads wisdom information from a string.

B

BACKWARD - Static variable in interface jfftw.Plan
Prepare a plan for backward transforms.

C

clear() - Static method in class jfftw.Wisdom
Discards existing wisdom information.
COMPLEX_TO_REAL - Static variable in interface jfftw.Plan
Prepare a plan for half-complex to real transforms.

E

ESTIMATE - Static variable in interface jfftw.Plan
Flag requesting plan choice based on estimations.

F

finalize() - Method in class jfftw.complex.nd.Plan
Destroys the fftwnd_plan structure.
finalize() - Method in class jfftw.complex.Plan
Destroys the fftwnd_plan structure.
finalize() - Method in class jfftw.real.nd.Plan
Destroys the rfftwnd_plan structure.
finalize() - Method in class jfftw.real.Plan
Destroys the rfftw_plan structure.
FORWARD - Static variable in interface jfftw.Plan
Prepare a plan for forward transforms.

G

get() - Static method in class jfftw.Wisdom
Returns wisdom information as a string.

I

IN_PLACE - Static variable in interface jfftw.Plan
Flag requesting plan for in-place transforms.

J

jfftw - package jfftw
 
jfftw.complex - package jfftw.complex
 
jfftw.complex.nd - package jfftw.complex.nd
 
jfftw.real - package jfftw.real
 
jfftw.real.nd - package jfftw.real.nd
 

L

load(File) - Static method in class jfftw.Wisdom
Loads wisdom information from a file.

M

MEASURE - Static variable in interface jfftw.Plan
Flag requesting plan choice based on measurements.

P

Plan - interface jfftw.Plan.
Common interface for the Plan classes.
Plan - class jfftw.complex.nd.Plan.
Corresponds to an FFTW fftwnd_plan (plan for complex multi-dimensional transforms) structure.
Plan - class jfftw.complex.Plan.
Corresponds to an FFTW fftw_plan (plan for complex one dimensional transforms) structure.
Plan - class jfftw.real.nd.Plan.
Corresponds to an FFTW rfftwnd_plan (plan for real multi-dimensional transforms) structure.
Plan - class jfftw.real.Plan.
Corresponds to an FFTW rfftw_plan (plan for real one dimensional transforms) structure.
Plan(int) - Constructor for class jfftw.complex.Plan
Constructs a forward (see FORWARD) Plan for the given length n based on estimations (see ESTIMATE).
Plan(int) - Constructor for class jfftw.real.Plan
Constructs a real-to-complex (see REAL_TO_COMPLEX) Plan for the given length n based on estimations (see ESTIMATE).
Plan(int[]) - Constructor for class jfftw.complex.nd.Plan
Constructs a forward (see FORWARD) Plan for the given dimensions dim based on estimations (see ESTIMATE).
Plan(int[]) - Constructor for class jfftw.real.nd.Plan
Constructs a real-to-complex (see REAL_TO_COMPLEX) Plan for the given dimensions dim based on estimations (see ESTIMATE).
Plan(int[], int) - Constructor for class jfftw.complex.nd.Plan
Constructs a Plan for the given dimensions dim and direction dir based on estimations (see ESTIMATE).
Plan(int[], int) - Constructor for class jfftw.real.nd.Plan
Constructs a Plan for the given dimensions dim and direction dir based on estimations (see ESTIMATE).
Plan(int[], int, int) - Constructor for class jfftw.complex.nd.Plan
Constructs a Plan for the given dimensions dim, direction dir and initialization flags.
Plan(int[], int, int) - Constructor for class jfftw.real.nd.Plan
Constructs a Plan for the given dimensions dim, direction dir and initialization flags.
Plan(int[], int, int, double[], int, double[], int) - Constructor for class jfftw.complex.nd.Plan
Constructs a Plan for the given dimensions dim, direction dir, initialization flags and actual input/output arrays.
Plan(int, int) - Constructor for class jfftw.complex.Plan
Constructs a Plan for the given length n and direction dir based on estimations (see ESTIMATE).
Plan(int, int) - Constructor for class jfftw.real.Plan
Constructs a Plan for the given length n and direction dir based on estimations (see ESTIMATE).
Plan(int, int, int) - Constructor for class jfftw.complex.nd.Plan
Constructs a Plan for the given width and height (two dimensional) and direction dir based on estimations (see ESTIMATE).
Plan(int, int, int) - Constructor for class jfftw.complex.Plan
Constructs a Plan for the given length n, direction dir and initialization flags.
Plan(int, int, int) - Constructor for class jfftw.real.nd.Plan
Constructs a Plan for the given width and height (two dimensional) and direction dir based on estimations (see ESTIMATE).
Plan(int, int, int) - Constructor for class jfftw.real.Plan
Constructs a Plan for the given length n, direction dir and initialization flags.
Plan(int, int, int, double[], int, double[], int) - Constructor for class jfftw.complex.Plan
Constructs a Plan for the given length n, direction dir, initialization flags and actual input/output arrays.
Plan(int, int, int, double[], int, double[], int) - Constructor for class jfftw.real.Plan
Constructs a Plan for the given length n, direction dir, initialization flags and actual input/output arrays.
Plan(int, int, int, int) - Constructor for class jfftw.complex.nd.Plan
Constructs a Plan for the given width, height and depth (three dimensional) and direction dir based on estimations (see ESTIMATE).
Plan(int, int, int, int) - Constructor for class jfftw.real.nd.Plan
Constructs a Plan for the given width, height and depth (three dimensional) and direction dir based on estimations (see ESTIMATE).

R

READONLY - Static variable in interface jfftw.Plan
Flag requesting a read-only plan.
REAL_TO_COMPLEX - Static variable in interface jfftw.Plan
Prepare a plan for real to half-complex transforms.

S

save(File) - Static method in class jfftw.Wisdom
Saves wisdom information to a file.

T

transform(double[]) - Method in interface jfftw.Plan
Simple transform routine.
transform(double[]) - Method in class jfftw.complex.nd.Plan
Calculates the Fourier transform of in.
transform(double[]) - Method in class jfftw.complex.Plan
Calculates the Fourier transform of in.
transform(double[]) - Method in class jfftw.real.nd.Plan
Calculates the Fourier transform of in.
transform(double[]) - Method in class jfftw.real.Plan
Calculates the Fourier transform of in.
transform(int, double[], int, int, double[], int, int) - Method in interface jfftw.Plan
Multiple transform routine.
transform(int, double[], int, int, double[], int, int) - Method in class jfftw.complex.nd.Plan
Calculates multiple Fourier transforms.
transform(int, double[], int, int, double[], int, int) - Method in class jfftw.complex.Plan
Calculates multiple Fourier transforms.
transform(int, double[], int, int, double[], int, int) - Method in class jfftw.real.nd.Plan
Calculates multiple Fourier transforms.
transform(int, double[], int, int, double[], int, int) - Method in class jfftw.real.Plan
Calculates multiple Fourier transforms.

U

USE_WISDOM - Static variable in interface jfftw.Plan
Flag requesting storage of gathered data.

W

Wisdom - class jfftw.Wisdom.
Wisdom represents all information FFTW has gathered during the creation of plans.

A B C E F G I J L M P R S T U W