|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectedu.emory.mathcs.jtransforms.fft.RealFFTUtils_2D
public class RealFFTUtils_2D
This is a set of utility methods for R/W access to data resulting from a call to the Fourier transform of real data. Memory optimized methods, namely
DoubleFFT_2D.realForward(double[])DoubleFFT_2D.realForward(double[][])FloatFFT_2D.realForward(float[])FloatFFT_2D.realForward(float[][])
DoubleFFT_2D fft = new DoubleFFT_2D(rows, columns); double[] data = new double[2 * rows * columns]; ... fft.realForwardFull(data); data[r1 * 2 * columns + c1] = val1; val2 = data[r2 * 2 * columns + c2];is equivalent to
DoubleFFT_2D fft = new DoubleFFT_2D(rows, columns); RealFFTUtils_2D unpacker = new RealFFTUtils_2D(rows, columns); double[] data = new double[rows * columns]; ... fft.realForward(data); unpacker.pack(val1, r1, c1, data); val2 = unpacker.unpack(r2, c2, data, 0);Even (resp. odd) values of
c correspond to the real (resp.
imaginary) part of the Fourier mode.
DoubleFFT_2D fft = new DoubleFFT_2D(rows, columns); double[][] data = new double[rows][2 * columns]; ... fft.realForwardFull(data); data[r1][c1] = val1; val2 = data[r2][c2];is equivalent to
DoubleFFT_2D fft = new DoubleFFT_2D(rows, columns); RealFFTUtils_2D unpacker = new RealFFTUtils_2D(rows, columns); double[][] data = new double[rows][columns]; ... fft.realForward(data); unpacker.pack(val1, r1, c1, data); val2 = unpacker.unpack(r2, c2, data, 0);Even (resp. odd) values of
c correspond to the real (resp.
imaginary) part of the Fourier mode.
| Constructor Summary | |
|---|---|
RealFFTUtils_2D(int rows,
int columns)
Creates a new instance of this class. |
|
| Method Summary | |
|---|---|
int |
getIndex(int r,
int c)
Returns the 1d index of the specified 2d Fourier mode. |
void |
pack(double val,
int r,
int c,
double[][] packed)
Sets the specified Fourier mode of the transformed data. |
void |
pack(double val,
int r,
int c,
double[] packed,
int pos)
Sets the specified Fourier mode of the transformed data. |
void |
pack(float val,
int r,
int c,
float[][] packed)
Sets the specified Fourier mode of the transformed data. |
void |
pack(float val,
int r,
int c,
float[] packed,
int pos)
Sets the specified Fourier mode of the transformed data. |
double |
unpack(int r,
int c,
double[][] packed)
Returns the specified Fourier mode of the transformed data. |
double |
unpack(int r,
int c,
double[] packed,
int pos)
Returns the specified Fourier mode of the transformed data. |
float |
unpack(int r,
int c,
float[][] packed)
Returns the specified Fourier mode of the transformed data. |
float |
unpack(int r,
int c,
float[] packed,
int pos)
Returns the specified Fourier mode of the transformed data. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RealFFTUtils_2D(int rows,
int columns)
DoubleFFT_2D or FloatFFT_2D must be specified.
rows - number of rowscolumns - number of columns| Method Detail |
|---|
public int getIndex(int r,
int c)
Returns the 1d index of the specified 2d Fourier mode. In other words, if
packed contains the transformed data following a call to
DoubleFFT_2D.realForward(double[]) or
FloatFFT_2D.realForward(float[]), then the returned value
index gives access to the [r][c] Fourier mode
index == Integer.MIN_VALUE, then the Fourier
mode is zero,index >= 0, then the Fourier mode is
packed[index],index < 0, then the Fourier mode is
-packed[-index],
r - the row indexc - the column index
index
public void pack(double val,
int r,
int c,
double[] packed,
int pos)
DoubleFFT_2D.realForward(double[]).
val - the new value of the [r][c] Fourier moder - the row indexc - the column indexpacked - the transformed datapos - index of the first element in array packed
public void pack(double val,
int r,
int c,
double[][] packed)
DoubleFFT_2D.realForward(double[][]).
val - the new value of the [r][c] Fourier moder - the row indexc - the column indexpacked - the transformed data
public void pack(float val,
int r,
int c,
float[] packed,
int pos)
FloatFFT_2D.realForward(float[]).
val - the new value of the [r][c] Fourier moder - the row indexc - the column indexpacked - the transformed datapos - index of the first element in array packed
public void pack(float val,
int r,
int c,
float[][] packed)
FloatFFT_2D.realForward(float[][]).
val - the new value of the [r][c] Fourier moder - the row indexc - the column indexpacked - the transformed data
public double unpack(int r,
int c,
double[] packed,
int pos)
DoubleFFT_2D.realForward(double[]).
r - the row indexc - the column indexpacked - the transformed datapos - index of the first element in array packed
[r][c] Fourier mode
public double unpack(int r,
int c,
double[][] packed)
DoubleFFT_2D.realForward(double[][])
.
r - the row indexc - the column indexpacked - the transformed data
[r][c] Fourier mode
public float unpack(int r,
int c,
float[] packed,
int pos)
FloatFFT_2D.realForward(float[])
.
r - the row indexc - the column indexpacked - the transformed datapos - index of the first element in array packed
[r][c] Fourier mode
public float unpack(int r,
int c,
float[][] packed)
FloatFFT_2D.realForward(float[][]) .
r - the row indexc - the column indexpacked - the transformed data
[r][c] Fourier mode
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||