diff options
author | Anthony Blake <anthonix@me.com> | 2012-11-15 15:32:04 +1300 |
---|---|---|
committer | Anthony Blake <anthonix@me.com> | 2012-11-15 15:32:04 +1300 |
commit | fe70c1701e7bad474a24a3d659fadd6a59d1b4ad (patch) | |
tree | 5c81e0f0fa8ed830be9c5a4b8fd6b2d2ae1e738b /include | |
parent | 09beffbe4a15a1d9ff4eab718f7e077ad52f9181 (diff) | |
download | ffts-fe70c1701e7bad474a24a3d659fadd6a59d1b4ad.zip ffts-fe70c1701e7bad474a24a3d659fadd6a59d1b4ad.tar.gz |
Added API for real multi-dimension transforms
Diffstat (limited to 'include')
-rw-r--r-- | include/ffts.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ffts.h b/include/ffts.h index d17ff04..a8750e0 100644 --- a/include/ffts.h +++ b/include/ffts.h @@ -55,7 +55,8 @@ ffts_plan_t *ffts_init_nd(int rank, size_t *Ns, int sign); // The output of a real-to-complex transform is N/2+1 complex numbers, where the // redundant outputs have been omitted. ffts_plan_t *ffts_init_1d_real(size_t N, int sign); - +ffts_plan_t *ffts_init_2d_real(size_t N1, size_t N2, int sign); +ffts_plan_t *ffts_init_nd_real(int rank, size_t *Ns, int sign); void ffts_execute(ffts_plan_t * , const void *input, void *output); void ffts_free(ffts_plan_t *); |