![]() |
NFFT
3.5.3
|
Direct and fast computation of the discrete nonequispaced in time and frequency Fourier transform. More...
Data Structures | |
struct | nnfft_plan |
Macros | |
#define | MALLOC_V (1U<< 11) |
Functions | |
void | nnfft_init (nnfft_plan *ths, int d, int N_total, int M_total, int *N) |
void | nnfft_init_guru (nnfft_plan *ths, int d, int N_total, int M_total, int *N, int *N1, int m, unsigned nnfft_flags) |
void | nnfft_trafo (nnfft_plan *ths) |
user routines More... | |
void | nnfft_adjoint (nnfft_plan *ths) |
void | nnfft_precompute_lin_psi (nnfft_plan *ths) |
create a lookup table More... | |
void | nnfft_precompute_psi (nnfft_plan *ths) |
void | nnfft_precompute_full_psi (nnfft_plan *ths) |
computes all entries of B explicitly More... | |
void | nnfft_precompute_phi_hut (nnfft_plan *ths) |
initialisation of direct transform More... | |
void | nnfft_finalize (nnfft_plan *ths) |
Direct and fast computation of the discrete nonequispaced in time and frequency Fourier transform.
#define MALLOC_V (1U<< 11) |
If this flag is set, (de)allocation of the frequency node vector is done.
nnfft_init | ( | nnfft_plan * | ths_plan, |
int | d, | ||
int | N_total, | ||
int | M_total, | ||
int * | N | ||
) |
void nnfft_init_guru | ( | nnfft_plan * | ths_plan, |
int | d, | ||
int | N_total, | ||
int | M_total, | ||
int * | N, | ||
int * | N1, | ||
int | m, | ||
unsigned | nnfft_flags | ||
) |
Creates a transform plan.
Definition at line 577 of file nnfft.c.
References FFT_OUT_OF_PLACE, FFTW_INIT, MALLOC_F_HAT, and PRE_PHI_HUT.
void nnfft_trafo | ( | nnfft_plan * | ths_plan | ) |
void nnfft_adjoint | ( | nnfft_plan * | ths_plan | ) |
void nnfft_precompute_lin_psi | ( | nnfft_plan * | ths_plan | ) |
void nnfft_precompute_psi | ( | nnfft_plan * | ths_plan | ) |
Precomputation for a transform plan.
precomputes the values of the window function psi in a tensor product form
if PRE_PSI is set the application program has to call this routine after setting the nodes x
Definition at line 385 of file nnfft.c.
Referenced by nnfft_precompute_full_psi().
void nnfft_precompute_full_psi | ( | nnfft_plan * | ths_plan | ) |
computes all entries of B explicitly
Precomputation for a transform plan.
precomputes the values of the window function psi and their indices in non tensor product form
if PRE_FULL_PSI is set the application program has to call this routine after setting the nodes x
Definition at line 424 of file nnfft.c.
References nnfft_precompute_psi().
void nnfft_precompute_phi_hut | ( | nnfft_plan * | ths_plan | ) |
initialisation of direct transform
Precomputation for a transform plan.
precomputes the values of the fourier transformed window function, i.e. phi_hut
if PRE_PHI_HUT is set the application program has to call this routine after setting the nodes v
void nnfft_finalize | ( | nnfft_plan * | ths_plan | ) |
Destroys a plan.
Definition at line 657 of file nnfft.c.
References MALLOC_F, MALLOC_F_HAT, MALLOC_V, MALLOC_X, PRE_FULL_PSI, PRE_LIN_PSI, PRE_PHI_HUT, and PRE_PSI.