@@ -96,7 +96,7 @@ AFAPI array fft3(const array& in, double norm_factor, dim_type odim0=0, dim_type
96
96
97
97
\ingroup signal_func_fft
98
98
*/
99
- AFAPI array fft (const array& in, dim_type odim0);
99
+ AFAPI array fft (const array& in, dim_type odim0= 0 );
100
100
101
101
/* *
102
102
C++ Interface for fast fourier transform on two dimensional data
@@ -139,7 +139,7 @@ AFAPI array fft3(const array& in, dim_type odim0=0, dim_type odim1=0, dim_type o
139
139
140
140
\ingroup signal_func_fft
141
141
*/
142
- AFAPI array fft (const array& in, double norm_factor, const dim4 outDims);
142
+ AFAPI array dft (const array& in, double norm_factor, const dim4 outDims);
143
143
144
144
/* *
145
145
C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional data
@@ -153,7 +153,7 @@ AFAPI array fft(const array& in, double norm_factor, const dim4 outDims);
153
153
154
154
\ingroup signal_func_fft
155
155
*/
156
- AFAPI array fft (const array& in, const dim4 outDims);
156
+ AFAPI array dft (const array& in, const dim4 outDims);
157
157
158
158
/* *
159
159
C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional data
@@ -166,7 +166,7 @@ AFAPI array fft(const array& in, const dim4 outDims);
166
166
167
167
\ingroup signal_func_fft
168
168
*/
169
- AFAPI array fft (const array& in);
169
+ AFAPI array dft (const array& in);
170
170
171
171
/* *
172
172
C++ Interface for inverse fast fourier transform on one dimensional data
@@ -219,7 +219,7 @@ AFAPI array ifft3(const array& in, double norm_factor, dim_type odim0=0, dim_typ
219
219
220
220
\ingroup signal_func_ifft
221
221
*/
222
- AFAPI array ifft (const array& in, dim_type odim0);
222
+ AFAPI array ifft (const array& in, dim_type odim0= 0 );
223
223
224
224
/* *
225
225
C++ Interface for inverse fast fourier transform on two dimensional data
@@ -262,7 +262,7 @@ AFAPI array ifft3(const array& in, dim_type odim0=0, dim_type odim1=0, dim_type
262
262
263
263
\ingroup signal_func_fft
264
264
*/
265
- AFAPI array ifft (const array& in, double norm_factor, const dim4 outDims);
265
+ AFAPI array idft (const array& in, double norm_factor, const dim4 outDims);
266
266
267
267
/* *
268
268
C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional data
@@ -276,7 +276,7 @@ AFAPI array ifft(const array& in, double norm_factor, const dim4 outDims);
276
276
277
277
\ingroup signal_func_fft
278
278
*/
279
- AFAPI array ifft (const array& in, const dim4 outDims);
279
+ AFAPI array idft (const array& in, const dim4 outDims);
280
280
281
281
/* *
282
282
C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional data
@@ -289,7 +289,7 @@ AFAPI array ifft(const array& in, const dim4 outDims);
289
289
290
290
\ingroup signal_func_fft
291
291
*/
292
- AFAPI array ifft (const array& in);
292
+ AFAPI array idft (const array& in);
293
293
294
294
/* *
295
295
C++ Interface for convolution any(one through three) dimensional data
0 commit comments