1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
//! Fast Fourier Transform Module
//!
//! This module provides comprehensive Fast Fourier Transform (FFT) functionality,
//! built on top of `scirs2-fft`. It includes:
//!
//! - **Basic FFT**: Complex-to-complex FFT/IFFT (1D, 2D, ND)
//! - **Real FFT**: Optimized real-to-complex RFFT/IRFFT
//! - **DCT/DST**: Discrete Cosine/Sine Transforms (Types I-IV)
//! - **Specialized**: Fractional FFT, Non-Uniform FFT, Hermitian FFT
//! - **Time-Frequency**: STFT, spectrograms, waterfall plots
//! - **Performance**: Plan caching, GPU acceleration, SIMD optimization
//!
//! # Examples
//!
//! ## Basic FFT
//!
//! ```
//! use numrs2::fft;
//!
//! // Time-domain signal
//! let signal = vec![1.0, 2.0, 3.0, 4.0];
//!
//! // Forward FFT: time → frequency domain
//! let spectrum = fft::fft(&signal, None).expect("fft should succeed");
//! println!("Frequency spectrum: {:?}", spectrum);
//!
//! // Inverse FFT: frequency → time domain
//! let recovered = fft::ifft(&spectrum, None).expect("ifft should succeed");
//! println!("Recovered signal: {:?}", recovered);
//! ```
//!
//! ## Real FFT (Optimized for Real Inputs)
//!
//! ```
//! use numrs2::fft;
//!
//! // Real-valued signal (typical use case)
//! let signal = vec![1.0, 0.5, -0.5, -1.0, 0.0, 0.5];
//!
//! // RFFT: optimized for real inputs, returns only positive frequencies
//! let spectrum = fft::rfft(&signal, None).expect("rfft should succeed");
//! println!("Spectrum length: {} (from {} real samples)", spectrum.len(), signal.len());
//!
//! // Inverse RFFT
//! let recovered = fft::irfft(&spectrum, Some(signal.len())).expect("irfft should succeed");
//! ```
//!
//! ## 2D FFT (Image Processing)
//!
//! ```
//! use numrs2::fft;
//! use scirs2_core::ndarray::Array2;
//!
//! // 2D signal (e.g., 8x8 image patch)
//! let image = Array2::<f64>::zeros((8, 8));
//!
//! // 2D FFT: spatial → frequency domain
//! let spectrum = fft::fft2(&image, None, None, None).expect("fft2 should succeed");
//! println!("2D spectrum shape: {:?}", spectrum.dim());
//!
//! // Inverse 2D FFT: frequency → spatial domain
//! let recovered = fft::ifft2(&spectrum, None, None, None).expect("ifft2 should succeed");
//! ```
//!
//! ## Discrete Cosine Transform (DCT)
//!
//! ```
//! use numrs2::fft::{self, DCTType};
//!
//! // Signal for DCT (commonly used in JPEG compression)
//! let signal = vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0];
//!
//! // DCT Type-II (most common, used in JPEG/MP3)
//! let dct_coeffs = fft::dct(&signal, Some(DCTType::Type2), None).expect("dct should succeed");
//! println!("DCT coefficients: {:?}", dct_coeffs);
//!
//! // Inverse DCT
//! let recovered = fft::idct(&dct_coeffs, Some(DCTType::Type2), None).expect("idct should succeed");
//! ```
//!
//! ## Short-Time Fourier Transform (STFT)
//!
//! ```
//! use numrs2::fft::{self, Window};
//!
//! // Long signal for time-frequency analysis
//! let signal: Vec<f64> = (0..1000).map(|i| (2.0 * std::f64::consts::PI * 10.0 * i as f64 / 1000.0).sin()).collect();
//!
//! // Compute STFT with Hann window
//! let (times, freqs, stft_matrix) = fft::spectrogram_stft(
//! &signal,
//! fft::Window::Hann,
//! 128, // window size
//! Some(64), // hop size (50% overlap)
//! None, // default FFT size
//! Some(1000.0), // sampling rate
//! None, // no detrending
//! None, // return onesided spectrum
//! None, // boundary
//! ).expect("spectrogram_stft should succeed");
//!
//! println!("Time bins: {}, Frequency bins: {}", times.len(), freqs.len());
//! ```
//!
//! ## Frequency Helpers
//!
//! ```
//! use numrs2::fft;
//!
//! // Get FFT frequency bins
//! let n = 128;
//! let sample_rate = 1000.0;
//! let freqs = fft::fftfreq(n, 1.0 / sample_rate).expect("fftfreq should succeed");
//! println!("FFT frequencies: {:?}", &freqs[..10]);
//!
//! // Get RFFT frequency bins (only positive frequencies)
//! let rfreqs = fft::rfftfreq(n, 1.0 / sample_rate).expect("rfftfreq should succeed");
//! println!("RFFT frequencies: {:?}", rfreqs);
//!
//! // Find optimal FFT size (power of 2 or 3×2^k for faster computation)
//! let optimal_size = fft::next_fast_len(100, true);
//! println!("Optimal FFT size for 100 samples: {}", optimal_size);
//! ```
//!
//! # FFT Variants
//!
//! ## Complex FFT (General Purpose)
//! - `fft()`, `ifft()`: 1D complex-to-complex transforms
//! - `fft2()`, `ifft2()`: 2D transforms for images/matrices
//! - `fftn()`, `ifftn()`: N-dimensional transforms
//!
//! ## Real FFT (Optimized)
//! - `rfft()`, `irfft()`: 1D real-to-complex (2× faster than FFT)
//! - `rfft2()`, `irfft2()`: 2D real transforms
//! - `rfftn()`, `irfftn()`: N-dimensional real transforms
//! - Returns only positive frequencies (exploits Hermitian symmetry)
//!
//! ## Hermitian FFT
//! - `hfft()`, `ihfft()`: For signals with Hermitian symmetry
//! - `hfft2()`, `ihfft2()`: 2D Hermitian transforms
//!
//! ## Discrete Cosine Transform (DCT)
//! - Types I, II, III, IV available
//! - Type-II most common (JPEG, MP3, video codecs)
//! - `dct()`, `idct()`: 1D transforms
//! - `dct2()`, `idct2()`: 2D transforms (image blocks)
//! - `dctn()`, `idctn()`: N-dimensional transforms
//!
//! ## Discrete Sine Transform (DST)
//! - Types I, II, III, IV available
//! - Used in heat equation solvers, boundary problems
//! - `dst()`, `idst()`: 1D transforms
//! - `dst2()`, `idst2()`: 2D transforms
//! - `dstn()`, `idstn()`: N-dimensional transforms
//!
//! ## Specialized Transforms
//! - **Fractional FFT** (`frft`): Generalization of FFT with fractional order
//! - **Non-Uniform FFT** (`nufft`): FFT on non-uniformly spaced data
//! - **Fast Hartley Transform** (`fht`): Real-valued alternative to FFT
//!
//! # Time-Frequency Analysis
//!
//! - **STFT**: Short-Time Fourier Transform for time-varying spectra
//! - **Spectrogram**: Power spectral density over time
//! - **Waterfall Plots**: 3D visualization of time-frequency data
//!
//! # Performance Features
//!
//! ## Plan Caching
//! ```rust,no_run
//! use numrs2::fft;
//!
//! // Plans are automatically cached for repeated transforms
//! let signal = vec![0.0; 1024];
//! let spectrum1 = fft::fft(&signal, None).expect("fft should succeed"); // Creates and caches plan
//! let spectrum2 = fft::fft(&signal, None).expect("fft should succeed"); // Reuses cached plan (faster)
//! ```
//!
//! ## SIMD Optimization
//! ```rust,no_run
//! use numrs2::fft;
//!
//! // SIMD-optimized variants (AVX/AVX2/AVX-512)
//! let signal = vec![0.0; 1024];
//! let spectrum = fft::fft_simd(&signal, None).expect("fft_simd should succeed");
//!
//! // Adaptive: automatically chooses best implementation
//! let spectrum = fft::fft_adaptive(&signal, None).expect("fft_adaptive should succeed");
//! ```
//!
//! ## Worker Pools (Parallel)
//! ```rust,no_run
//! use numrs2::fft;
//!
//! // Set number of worker threads
//! fft::set_workers(8);
//!
//! // Large transforms will use parallel execution
//! let large_signal = vec![0.0; 1048576];
//! let spectrum = fft::fft(&large_signal, None).expect("fft should succeed");
//! ```
//!
//! # Use Cases
//!
//! - **Signal Processing**: Filtering, spectral analysis, convolution
//! - **Image Processing**: Frequency-domain filtering, compression (JPEG)
//! - **Audio Processing**: Music analysis, speech processing, audio codecs
//! - **Scientific Computing**: PDE solvers, numerical methods
//! - **Communications**: Modulation/demodulation, channel estimation
//! - **Machine Learning**: Feature extraction, time-series analysis
// Re-export all scirs2-fft modules and functions
pub use *;
// Additional NumRS2-specific convenience functions and aliases can be added here