NFFT  3.4.1
Macros | Functions
FPT - Fast polynomial transform

This module implements fast polynomial transforms. More...

Macros

#define FPT_NO_FAST_ALGORITHM   (1U << 2)
 If set, TODO complete comment.
 
#define FPT_NO_DIRECT_ALGORITHM   (1U << 3)
 If set, TODO complete comment.
 
#define FPT_NO_STABILIZATION   (1U << 0)
 If set, no stabilization will be used.
 
#define FPT_PERSISTENT_DATA   (1U << 4)
 If set, TODO complete comment.
 
#define FPT_FUNCTION_VALUES   (1U << 5)
 If set, the output are function values at Chebyshev nodes rather than Chebyshev coefficients.
 
#define FPT_AL_SYMMETRY   (1U << 6)
 If set, TODO complete comment.
 

Functions

fpt_set fpt_init (const int M, const int t, const unsigned int flags)
 
void fpt_precompute (fpt_set set, const int m, double *alpha, double *beta, double *gam, int k_start, const double threshold)
 
void fpt_transposed (fpt_set set, const int m, double _Complex *x, double _Complex *y, const int k_end, const unsigned int flags)
 

Detailed Description

This module implements fast polynomial transforms.

In the following, we abbreviate the term "fast polynomial transforms" by FPT.

Function Documentation

fpt_set fpt_init ( const int  M,
const int  t,
const unsigned int  flags 
)

Initializes a set of precomputed data for DPT transforms of equal length.

  • M The maximum DPT transform index $M \in \mathbb{N}_0$. The individual transforms are addressed by and index number $m \in \mathbb{N}_0$ with range $m = 0,\ldots,M$. The total number of transforms is therefore $M+1$.
  • t The exponent $t \in \mathbb{N}, t \ge 2$ of the transform length $N = 2^t \in \mathbb{N}, N \ge 4$
  • flags A bitwise combination of the flags FPT_NO_STABILIZATION,
Author
Jens Keiner

Definition at line 755 of file fpt.c.

References fpt_set_s_::dpt, fpt_set_s_::flags, FPT_NO_DIRECT_ALGORITHM, FPT_NO_FAST_ALGORITHM, fpt_set_s_::kinds, fpt_set_s_::kindsr, fpt_set_s_::lengths, fpt_set_s_::M, fpt_set_s_::N, nfft_free(), nfft_malloc(), fpt_set_s_::plans_dct2, fpt_set_s_::plans_dct3, fpt_data_::steps, fpt_set_s_::t, X, and fpt_set_s_::xcvecs.

Referenced by main(), and nfsft_precompute().

void fpt_precompute ( fpt_set  set,
const int  m,
double *  alpha,
double *  beta,
double *  gam,
int  k_start,
const double  threshold 
)

Computes the data required for a single DPT transform.

  • set The set of DPT transform data where the computed data will be stored.
  • m The transform index $m \in \mathbb{N}, 0 \le m \le M$.
  • alpha The three-term recurrence coefficients $\alpha_k \in \mathbb{R}$ for $k=0,\ldots,N$ such that alpha[k] $=\alpha_k$.
  • beta The three-term recurrence coefficients $\beta_k \in \mathbb{R}$ for $k=0,\ldots,N$ such that beta[k] $=\beta_k$.
  • gamma The three-term recurrence coefficients $\gamma_k \in \mathbb{R}$ for $k=0,\ldots,N$ such that gamma[k] $=\gamma_k$.
  • k_start The index $k_{\text{start}} \in \mathbb{N}_0, 0 \le k_{\text{start}} \le N$
  • threshold The treshold $\kappa \in \mathbb{R}, \kappa > 0$.
Author
Jens Keiner

Definition at line 881 of file fpt.c.

References fpt_data_::_alpha, fpt_data_::_beta, fpt_data_::_gamma, fpt_step_::a22, fpt_data_::alpha_0, fpt_data_::alphaN, fpt_data_::beta_0, fpt_data_::betaN, fpt_set_s_::dpt, FIRST_L, fpt_set_s_::flags, FPT_AL_SYMMETRY, FPT_NO_DIRECT_ALGORITHM, FPT_NO_FAST_ALGORITHM, FPT_NO_STABILIZATION, FPT_PERSISTENT_DATA, fpt_data_::gamma_m1, fpt_data_::gammaN, fpt_data_::k_start, K_START_TILDE, LAST_L, fpt_set_s_::N, nfft_free(), nfft_malloc(), fpt_step_::Ns, fpt_step_::stable, fpt_data_::steps, fpt_set_s_::t, fpt_step_::ts, X, and fpt_set_s_::xcvecs.

Referenced by main(), and nfsft_precompute().

void fpt_transposed ( fpt_set  set,
const int  m,
double _Complex *  x,
double _Complex *  y,
const int  k_end,
const unsigned int  flags 
)