scirs2-linalg 0.4.2

Linear algebra module for SciRS2 (scirs2-linalg)
Documentation
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
//! Fast Fourier Transform (FFT) and spectral methods for signal processing
//!
//! This module implements cutting-edge FFT algorithms and spectral analysis techniques
//! that provide efficient frequency domain computations for signal processing, image
//! analysis, quantum physics, and machine learning applications:
//!
//! - **Core FFT algorithms**: Cooley-Tukey radix-2, mixed-radix, and prime-factor
//! - **Real-valued FFT optimizations**: RFFT for real-world signal processing
//! - **Multidimensional FFT**: 2D/3D FFT for image and volume processing
//! - **Windowing functions**: Hann, Hamming, Blackman, Kaiser for spectral analysis
//! - **Discrete transforms**: DCT, DST for compression and scientific computing
//! - **Convolution algorithms**: FFT-based fast convolution for signal processing
//! - **Spectral analysis**: Power spectral density and frequency analysis
//!
//! ## Key Advantages
//!
//! - **Optimal complexity**: O(n log n) instead of O(n²) for DFT
//! - **Memory efficiency**: In-place algorithms with minimal overhead
//! - **Numerical accuracy**: Bit-reversal and stable twiddle factor computation
//! - **Real-world optimized**: RFFT leverages Hermitian symmetry for 2x speedup
//! - **Comprehensive toolbox**: Complete spectral analysis ecosystem
//!
//! ## Mathematical Foundation
//!
//! The Discrete Fourier Transform (DFT) of a sequence `x[n]` is defined as:
//!
//! ```text
//! X[k] = Σ(n=0 to N-1) x[n] * exp(-j * 2π * k * n / N)
//! ```
//!
//! The FFT achieves O(n log n) complexity through divide-and-conquer recursion.
//!
//! ## References
//!
//! - Cooley, J. W., & Tukey, J. W. (1965). "An algorithm for the machine calculation of complex Fourier series"
//! - Frigo, M., & Johnson, S. G. (2005). "The design and implementation of FFTW3"
//! - Oppenheim, A. V., & Schafer, R. W. (2009). "Discrete-Time Signal Processing"

use scirs2_core::ndarray::{Array1, Array2, Array3, ArrayView1, ArrayView2, ArrayView3};
use scirs2_core::numeric::Complex;
use scirs2_core::numeric::{Float, FloatConst};
use std::f64::consts::PI;

use crate::error::{LinalgError, LinalgResult};

/// Complex number type for FFT computations
pub type Complex64 = Complex<f64>;
pub type Complex32 = Complex<f32>;

/// FFT algorithm type selection
#[derive(Debug, Clone, Copy)]
pub enum FFTAlgorithm {
    /// Cooley-Tukey radix-2 (power-of-2 sizes only)
    CooleyTukey,
    /// Mixed-radix algorithm (any size)
    MixedRadix,
    /// Prime-factor algorithm (sizes with small prime factors)
    PrimeFactor,
    /// Automatic selection based on input size
    Auto,
}

/// Window function types for spectral analysis
#[derive(Debug, Clone, Copy)]
pub enum WindowFunction {
    /// Rectangular window (no windowing)
    Rectangular,
    /// Hann window (raised cosine)
    Hann,
    /// Hamming window
    Hamming,
    /// Blackman window
    Blackman,
    /// Kaiser window with beta parameter
    Kaiser(f64),
    /// Tukey window with taper parameter
    Tukey(f64),
    /// Gaussian window with sigma parameter
    Gaussian(f64),
}

/// FFT planning and execution context
#[derive(Debug)]
pub struct FFTPlan<F> {
    /// Size of the transform
    pub size: usize,
    /// Algorithm to use
    pub algorithm: FFTAlgorithm,
    /// Precomputed twiddle factors
    pub twiddle_factors: Vec<Complex<F>>,
    /// Bit-reversal permutation indices
    pub bit_reversal: Vec<usize>,
    /// Whether this is for real input (RFFT)
    pub real_input: bool,
}

impl<F> FFTPlan<F>
where
    F: Float + FloatConst,
{
    /// Create a new FFT plan for the given size
    ///
    /// # Arguments
    ///
    /// * `size` - Transform size
    /// * `algorithm` - FFT algorithm to use
    /// * `real_input` - Whether input is real-valued
    ///
    /// # Returns
    ///
    /// * FFT plan ready for execution
    ///
    /// # Examples
    ///
    /// ```
    /// use scirs2_linalg::fft::{FFTPlan, FFTAlgorithm};
    ///
    /// let plan = FFTPlan::<f64>::new(1024, FFTAlgorithm::CooleyTukey, false).expect("Operation failed");
    /// ```
    pub fn new(size: usize, algorithm: FFTAlgorithm, realinput: bool) -> LinalgResult<Self> {
        if size == 0 {
            return Err(LinalgError::ShapeError(
                "FFT size must be positive".to_string(),
            ));
        }

        let selected_algorithm = match algorithm {
            FFTAlgorithm::Auto => Self::select_algorithm(size),
            _ => algorithm,
        };

        // Validate algorithm compatibility
        if let FFTAlgorithm::CooleyTukey = selected_algorithm {
            if !size.is_power_of_two() {
                return Err(LinalgError::ShapeError(
                    "Cooley-Tukey algorithm requires power-of-2 size".to_string(),
                ));
            }
        }

        let twiddle_factors = Self::compute_twiddle_factors(size);
        let bit_reversal = Self::compute_bit_reversal(size);

        Ok(FFTPlan {
            size,
            algorithm: selected_algorithm,
            twiddle_factors,
            bit_reversal,
            real_input: realinput,
        })
    }

    /// Automatically select the best algorithm for the given size
    fn select_algorithm(size: usize) -> FFTAlgorithm {
        if size.is_power_of_two() {
            FFTAlgorithm::CooleyTukey
        } else {
            FFTAlgorithm::MixedRadix
        }
    }

    /// Compute twiddle factors for FFT
    fn compute_twiddle_factors(size: usize) -> Vec<Complex<F>> {
        let mut twiddles = Vec::with_capacity(size);
        let two_pi = F::from(2.0).expect("Failed to convert constant to float") * F::PI();

        for k in 0..size {
            let angle = -two_pi * F::from(k).expect("Failed to convert to float")
                / F::from(size).expect("Failed to convert to float");
            twiddles.push(Complex::new(angle.cos(), angle.sin()));
        }

        twiddles
    }

    /// Compute bit-reversal permutation for radix-2 FFT
    fn compute_bit_reversal(size: usize) -> Vec<usize> {
        let mut reversal = vec![0; size];
        let logsize = (size as f64).log2() as usize;

        for (i, item) in reversal.iter_mut().enumerate().take(size) {
            *item = Self::reverse_bits(i, logsize);
        }

        reversal
    }

    /// Reverse bits of a number
    fn reverse_bits(mut num: usize, bits: usize) -> usize {
        let mut result = 0;
        for _ in 0..bits {
            result = (result << 1) | (num & 1);
            num >>= 1;
        }
        result
    }
}

/// Compute 1D FFT using the Cooley-Tukey radix-2 algorithm
///
/// # Arguments
///
/// * `input` - Input complex sequence
/// * `inverse` - Whether to compute inverse FFT
///
/// # Returns
///
/// * FFT coefficients
///
/// # Examples
///
/// ```
/// use scirs2_core::ndarray::array;
/// use scirs2_core::numeric::Complex;
/// use scirs2_linalg::fft::fft_1d;
///
/// let input = array![
///     Complex::new(1.0, 0.0),
///     Complex::new(0.0, 0.0),
///     Complex::new(0.0, 0.0),
///     Complex::new(0.0, 0.0),
/// ];
///
/// let result = fft_1d(&input.view(), false).expect("Operation failed");
/// ```
#[allow(dead_code)]
pub fn fft_1d(input: &ArrayView1<Complex64>, inverse: bool) -> LinalgResult<Array1<Complex64>> {
    let size = input.len();

    if !size.is_power_of_two() {
        return Err(LinalgError::ShapeError(
            "Input size must be power of 2 for Cooley-Tukey FFT".to_string(),
        ));
    }

    let plan = FFTPlan::new(size, FFTAlgorithm::CooleyTukey, false)?;
    fft_1d_with_plan(input, &plan, inverse)
}

/// Compute 1D FFT with a precomputed plan
#[allow(dead_code)]
pub fn fft_1d_with_plan(
    input: &ArrayView1<Complex64>,
    plan: &FFTPlan<f64>,
    inverse: bool,
) -> LinalgResult<Array1<Complex64>> {
    if input.len() != plan.size {
        return Err(LinalgError::ShapeError(format!(
            "Input size {} doesn't match plan size {}",
            input.len(),
            plan.size
        )));
    }

    match plan.algorithm {
        FFTAlgorithm::CooleyTukey => cooley_tukey_fft(input, plan, inverse),
        FFTAlgorithm::MixedRadix => mixed_radix_fft(input, plan, inverse),
        _ => Err(LinalgError::ComputationError(
            "Unsupported FFT algorithm".to_string(),
        )),
    }
}

/// Cooley-Tukey radix-2 FFT implementation
#[allow(dead_code)]
fn cooley_tukey_fft(
    input: &ArrayView1<Complex64>,
    plan: &FFTPlan<f64>,
    inverse: bool,
) -> LinalgResult<Array1<Complex64>> {
    let size = input.len();
    let mut data = input.to_owned();

    // Bit-reversal permutation
    for i in 0..size {
        let j = plan.bit_reversal[i];
        if i < j {
            data.swap(i, j);
        }
    }

    // Iterative FFT computation
    let mut length = 2;
    while length <= size {
        let half_length = length / 2;
        let step = size / length;

        for start in (0..size).step_by(length) {
            for i in 0..half_length {
                let u = data[start + i];
                let twiddle_index = i * step;
                let mut twiddle = plan.twiddle_factors[twiddle_index];

                if inverse {
                    twiddle = twiddle.conj();
                }

                let v = data[start + i + half_length] * twiddle;

                data[start + i] = u + v;
                data[start + i + half_length] = u - v;
            }
        }

        length *= 2;
    }

    // Scale for inverse FFT
    if inverse {
        let scale = Complex64::new(1.0 / size as f64, 0.0);
        for elem in data.iter_mut() {
            *elem *= scale;
        }
    }

    Ok(data)
}

/// Mixed-radix FFT for arbitrary sizes
#[allow(dead_code)]
fn mixed_radix_fft(
    input: &ArrayView1<Complex64>,
    _plan: &FFTPlan<f64>,
    inverse: bool,
) -> LinalgResult<Array1<Complex64>> {
    let size = input.len();

    // For now, use Bluestein's algorithm for arbitrary sizes
    bluestein_fft(input, inverse)
}

/// Bluestein's algorithm for arbitrary-size FFT
#[allow(dead_code)]
pub fn bluestein_fft(
    input: &ArrayView1<Complex64>,
    inverse: bool,
) -> LinalgResult<Array1<Complex64>> {
    let n = input.len();
    if n <= 1 {
        return Ok(input.to_owned());
    }

    // Find the next power of 2 greater than or equal to 2*n-1
    let m = (2 * n - 1).next_power_of_two();

    // Compute chirp sequence: exp(-j*π*k²/n)
    let mut chirp = Array1::zeros(m);
    let pi_over_n = if inverse {
        PI / n as f64
    } else {
        -PI / n as f64
    };

    for k in 0..n {
        let arg = pi_over_n * (k * k) as f64;
        chirp[k] = Complex64::new(arg.cos(), arg.sin());
        if k > 0 && k < n {
            chirp[m - k] = chirp[k];
        }
    }

    // Multiply input by chirp and zero-pad
    let mut a = Array1::zeros(m);
    for k in 0..n {
        a[k] = input[k] * chirp[k];
    }

    // Compute FFTs
    let a_fft = fft_power_of_2(&a.view())?;
    let chirp_fft = fft_power_of_2(&chirp.view())?;

    // Pointwise multiplication
    let mut product = Array1::zeros(m);
    for k in 0..m {
        product[k] = a_fft[k] * chirp_fft[k];
    }

    // Inverse FFT
    let ifft_result = ifft_power_of_2(&product.view())?;

    // Extract result and multiply by chirp
    let mut result = Array1::zeros(n);
    for k in 0..n {
        result[k] = ifft_result[k] * chirp[k];
    }

    // Scale for inverse
    if inverse {
        let scale = Complex64::new(1.0 / n as f64, 0.0);
        for elem in result.iter_mut() {
            *elem *= scale;
        }
    }

    Ok(result)
}

/// FFT for power-of-2 sizes (helper for Bluestein)
#[allow(dead_code)]
fn fft_power_of_2(input: &ArrayView1<Complex64>) -> LinalgResult<Array1<Complex64>> {
    if input.len().is_power_of_two() {
        fft_1d(input, false)
    } else {
        Err(LinalgError::ShapeError(
            "Input size must be power of 2".to_string(),
        ))
    }
}

/// IFFT for power-of-2 sizes (helper for Bluestein)
#[allow(dead_code)]
fn ifft_power_of_2(input: &ArrayView1<Complex64>) -> LinalgResult<Array1<Complex64>> {
    if input.len().is_power_of_two() {
        fft_1d(input, true)
    } else {
        Err(LinalgError::ShapeError(
            "Input size must be power of 2".to_string(),
        ))
    }
}

/// Real-valued FFT (RFFT) exploiting Hermitian symmetry
///
/// For real input of size N, produces N/2+1 complex output coefficients.
/// This is twice as efficient as complex FFT since we leverage the symmetry
/// property: `X[N-k] = X*[k]` for real input.
///
/// # Arguments
///
/// * `input` - Real input sequence
///
/// # Returns
///
/// * FFT coefficients (N/2+1 complex values)
///
/// # Examples
///
/// ```
/// use scirs2_core::ndarray::array;
/// use scirs2_linalg::fft::rfft_1d;
///
/// let input = array![1.0, 0.0, 0.0, 0.0];
/// let result = rfft_1d(&input.view()).expect("Operation failed");
/// ```
#[allow(dead_code)]
pub fn rfft_1d(input: &ArrayView1<f64>) -> LinalgResult<Array1<Complex64>> {
    let n = input.len();

    // Convert real _input to complex
    let mut complex_input = Array1::zeros(n);
    for i in 0..n {
        complex_input[i] = Complex64::new(input[i], 0.0);
    }

    // Compute full FFT
    let full_fft = if n.is_power_of_two() {
        fft_1d(&complex_input.view(), false)?
    } else {
        bluestein_fft(&complex_input.view(), false)?
    };

    // Extract positive frequencies (including DC and Nyquist)
    let outputsize = n / 2 + 1;
    let mut result = Array1::zeros(outputsize);

    for i in 0..outputsize {
        result[i] = full_fft[i];
    }

    Ok(result)
}

/// Inverse real-valued FFT (IRFFT)
///
/// Takes N/2+1 complex coefficients and produces N real output values.
///
/// # Arguments
///
/// * `input` - Complex FFT coefficients
/// * `outputsize` - Size of real output (must be even)
///
/// # Returns
///
/// * Real time-domain signal
#[allow(dead_code)]
pub fn irfft_1d(input: &ArrayView1<Complex64>, outputsize: usize) -> LinalgResult<Array1<f64>> {
    if !outputsize.is_multiple_of(2) {
        return Err(LinalgError::ShapeError(
            "Output size must be even for IRFFT".to_string(),
        ));
    }

    let expected_inputsize = outputsize / 2 + 1;
    if input.len() != expected_inputsize {
        return Err(LinalgError::ShapeError(format!(
            "Input size {} doesn't match expected size {} for output size {}",
            input.len(),
            expected_inputsize,
            outputsize
        )));
    }

    // Reconstruct full spectrum using Hermitian symmetry
    let mut full_spectrum = Array1::zeros(outputsize);

    // Copy positive frequencies
    for i in 0..input.len() {
        full_spectrum[i] = input[i];
    }

    // Fill negative frequencies using Hermitian symmetry: X[N-k] = X*[k]
    for i in 1..outputsize / 2 {
        full_spectrum[outputsize - i] = input[i].conj();
    }

    // Compute inverse FFT
    let ifft_result = if outputsize.is_power_of_two() {
        fft_1d(&full_spectrum.view(), true)?
    } else {
        bluestein_fft(&full_spectrum.view(), true)?
    };

    // Extract real part
    let mut result = Array1::zeros(outputsize);
    for i in 0..outputsize {
        result[i] = ifft_result[i].re;
    }

    Ok(result)
}

/// 2D FFT for image processing and 2D signal analysis
///
/// # Arguments
///
/// * `input` - 2D complex input array
/// * `inverse` - Whether to compute inverse FFT
///
/// # Returns
///
/// * 2D FFT coefficients
///
/// # Examples
///
/// ```
/// use scirs2_core::ndarray::Array2;
/// use scirs2_core::numeric::Complex;
/// use scirs2_linalg::fft::fft_2d;
///
/// let input = Array2::from_shape_fn((4, 4), |(i, j)| {
///     Complex::new((i + j) as f64, 0.0)
/// });
///
/// let result = fft_2d(&input.view(), false).expect("Operation failed");
/// ```
#[allow(dead_code)]
pub fn fft_2d(input: &ArrayView2<Complex64>, inverse: bool) -> LinalgResult<Array2<Complex64>> {
    let (rows, cols) = input.dim();
    let mut result = input.to_owned();

    // FFT along rows
    for i in 0..rows {
        let row = result.row(i).to_owned();
        let row_fft = if cols.is_power_of_two() {
            fft_1d(&row.view(), inverse)?
        } else {
            bluestein_fft(&row.view(), inverse)?
        };

        for j in 0..cols {
            result[[i, j]] = row_fft[j];
        }
    }

    // FFT along columns
    for j in 0..cols {
        let col = result.column(j).to_owned();
        let col_fft = if rows.is_power_of_two() {
            fft_1d(&col.view(), inverse)?
        } else {
            bluestein_fft(&col.view(), inverse)?
        };

        for i in 0..rows {
            result[[i, j]] = col_fft[i];
        }
    }

    Ok(result)
}

/// 3D FFT for volume processing and 3D signal analysis
#[allow(dead_code)]
pub fn fft_3d(input: &ArrayView3<Complex64>, inverse: bool) -> LinalgResult<Array3<Complex64>> {
    let (depth, rows, cols) = input.dim();
    let mut result = input.to_owned();

    // FFT along each dimension

    // First dimension (depth)
    for i in 0..rows {
        for j in 0..cols {
            let mut line = Array1::zeros(depth);
            for k in 0..depth {
                line[k] = result[[k, i, j]];
            }

            let line_fft = if depth.is_power_of_two() {
                fft_1d(&line.view(), inverse)?
            } else {
                bluestein_fft(&line.view(), inverse)?
            };

            for k in 0..depth {
                result[[k, i, j]] = line_fft[k];
            }
        }
    }

    // Second dimension (rows)
    for k in 0..depth {
        for j in 0..cols {
            let mut line = Array1::zeros(rows);
            for i in 0..rows {
                line[i] = result[[k, i, j]];
            }

            let line_fft = if rows.is_power_of_two() {
                fft_1d(&line.view(), inverse)?
            } else {
                bluestein_fft(&line.view(), inverse)?
            };

            for i in 0..rows {
                result[[k, i, j]] = line_fft[i];
            }
        }
    }

    // Third dimension (cols)
    for k in 0..depth {
        for i in 0..rows {
            let mut line = Array1::zeros(cols);
            for j in 0..cols {
                line[j] = result[[k, i, j]];
            }

            let line_fft = if cols.is_power_of_two() {
                fft_1d(&line.view(), inverse)?
            } else {
                bluestein_fft(&line.view(), inverse)?
            };

            for j in 0..cols {
                result[[k, i, j]] = line_fft[j];
            }
        }
    }

    Ok(result)
}

/// Apply window function to signal for spectral analysis
///
/// # Arguments
///
/// * `signal` - Input signal
/// * `window` - Window function type
///
/// # Returns
///
/// * Windowed signal
#[allow(dead_code)]
pub fn apply_window(signal: &ArrayView1<f64>, window: WindowFunction) -> LinalgResult<Array1<f64>> {
    let n = signal.len();
    let mut windowed = signal.to_owned();

    match window {
        WindowFunction::Rectangular => {
            // No modification needed
        }
        WindowFunction::Hann => {
            for i in 0..n {
                let factor = 0.5 * (1.0 - (2.0 * PI * i as f64 / (n - 1) as f64).cos());
                windowed[i] *= factor;
            }
        }
        WindowFunction::Hamming => {
            for i in 0..n {
                let factor = 0.54 - 0.46 * (2.0 * PI * i as f64 / (n - 1) as f64).cos();
                windowed[i] *= factor;
            }
        }
        WindowFunction::Blackman => {
            for i in 0..n {
                let x = 2.0 * PI * i as f64 / (n - 1) as f64;
                let factor = 0.42 - 0.5 * x.cos() + 0.08 * (2.0 * x).cos();
                windowed[i] *= factor;
            }
        }
        WindowFunction::Kaiser(beta) => {
            // Kaiser window with given beta parameter
            let i0_beta = modified_bessel_i0(beta);
            for i in 0..n {
                let x = 2.0 * i as f64 / (n - 1) as f64 - 1.0;
                let factor = modified_bessel_i0(beta * (1.0 - x * x).sqrt()) / i0_beta;
                windowed[i] *= factor;
            }
        }
        WindowFunction::Tukey(alpha) => {
            let taper_len = ((alpha * n as f64) / 2.0) as usize;
            for i in 0..n {
                let factor = if i < taper_len {
                    0.5 * (1.0 + (PI * i as f64 / taper_len as f64 - PI).cos())
                } else if i >= n - taper_len {
                    0.5 * (1.0 + (PI * (n - 1 - i) as f64 / taper_len as f64 - PI).cos())
                } else {
                    1.0
                };
                windowed[i] *= factor;
            }
        }
        WindowFunction::Gaussian(sigma) => {
            let center = (n - 1) as f64 / 2.0;
            for i in 0..n {
                let x = (i as f64 - center) / sigma;
                let factor = (-0.5 * x * x).exp();
                windowed[i] *= factor;
            }
        }
    }

    Ok(windowed)
}

/// Modified Bessel function I0 (for Kaiser window)
#[allow(dead_code)]
fn modified_bessel_i0(x: f64) -> f64 {
    let mut result = 1.0;
    let mut term = 1.0;
    let mut k = 1.0;

    while term.abs() > 1e-12 * result.abs() {
        term *= (x / 2.0) * (x / 2.0) / (k * k);
        result += term;
        k += 1.0;
    }

    result
}

/// Discrete Cosine Transform (DCT) Type-II
///
/// The DCT is widely used in image compression (JPEG) and signal processing.
///
/// # Arguments
///
/// * `input` - Real input sequence
///
/// # Returns
///
/// * DCT coefficients
#[allow(dead_code)]
pub fn dct_1d(input: &ArrayView1<f64>) -> LinalgResult<Array1<f64>> {
    let n = input.len();
    let mut result = Array1::zeros(n);

    for k in 0..n {
        let mut sum = 0.0;
        for i in 0..n {
            let angle = PI * k as f64 * (2.0 * i as f64 + 1.0) / (2.0 * n as f64);
            sum += input[i] * angle.cos();
        }

        let normalization = if k == 0 {
            (1.0 / n as f64).sqrt()
        } else {
            (2.0 / n as f64).sqrt()
        };

        result[k] = sum * normalization;
    }

    Ok(result)
}

/// Inverse Discrete Cosine Transform (IDCT)
#[allow(dead_code)]
pub fn idct_1d(input: &ArrayView1<f64>) -> LinalgResult<Array1<f64>> {
    let n = input.len();
    let mut result = Array1::zeros(n);

    for i in 0..n {
        let mut sum = 0.0;

        // DC component
        sum += input[0] * (1.0 / n as f64).sqrt();

        // AC components
        for k in 1..n {
            let angle = PI * k as f64 * (2.0 * i as f64 + 1.0) / (2.0 * n as f64);
            sum += input[k] * (2.0 / n as f64).sqrt() * angle.cos();
        }

        result[i] = sum;
    }

    Ok(result)
}

/// Discrete Sine Transform (DST) Type-I
#[allow(dead_code)]
pub fn dst_1d(input: &ArrayView1<f64>) -> LinalgResult<Array1<f64>> {
    let n = input.len();
    let mut result = Array1::zeros(n);

    for k in 0..n {
        let mut sum = 0.0;
        for i in 0..n {
            let angle = PI * (k + 1) as f64 * (i + 1) as f64 / (n + 1) as f64;
            sum += input[i] * angle.sin();
        }

        result[k] = sum * (2.0 / (n + 1) as f64).sqrt();
    }

    Ok(result)
}

/// Fast convolution using FFT
///
/// Computes the convolution of two signals using FFT, which is more efficient
/// than direct convolution for large signals.
///
/// # Arguments
///
/// * `signal1` - First signal
/// * `signal2` - Second signal (kernel)
///
/// # Returns
///
/// * Convolved signal
#[allow(dead_code)]
pub fn fft_convolve(
    signal1: &ArrayView1<f64>,
    signal2: &ArrayView1<f64>,
) -> LinalgResult<Array1<f64>> {
    let n1 = signal1.len();
    let n2 = signal2.len();
    let outputsize = n1 + n2 - 1;

    // Find next power of 2 for efficient FFT
    let fftsize = outputsize.next_power_of_two();

    // Zero-pad both signals
    let mut padded1 = Array1::zeros(fftsize);
    let mut padded2 = Array1::zeros(fftsize);

    for i in 0..n1 {
        padded1[i] = signal1[i];
    }
    for i in 0..n2 {
        padded2[i] = signal2[i];
    }

    // Convert to complex and compute FFTs
    let complex1 = rfft_1d(&padded1.view())?;
    let complex2 = rfft_1d(&padded2.view())?;

    // Pointwise multiplication in frequency domain
    let mut product = Array1::zeros(complex1.len());
    for i in 0..complex1.len() {
        product[i] = complex1[i] * complex2[i];
    }

    // Inverse FFT
    let result_full = irfft_1d(&product.view(), fftsize)?;

    // Extract valid convolution output
    let mut result = Array1::zeros(outputsize);
    for i in 0..outputsize {
        result[i] = result_full[i];
    }

    Ok(result)
}

/// Power Spectral Density (PSD) estimation using periodogram method
///
/// # Arguments
///
/// * `signal` - Input signal
/// * `window` - Window function to apply
/// * `nfft` - FFT size (None for signal length)
///
/// # Returns
///
/// * Power spectral density
#[allow(dead_code)]
pub fn periodogram_psd(
    signal: &ArrayView1<f64>,
    window: WindowFunction,
    nfft: Option<usize>,
) -> LinalgResult<Array1<f64>> {
    let n = signal.len();
    let fftsize = nfft.unwrap_or(n);

    // Apply window
    let windowed = apply_window(signal, window)?;

    // Zero-pad if necessary
    let mut padded = Array1::zeros(fftsize);
    for i in 0..n.min(fftsize) {
        padded[i] = windowed[i];
    }

    // Compute FFT
    let fft_result = rfft_1d(&padded.view())?;

    // Compute power spectral density
    let mut psd = Array1::zeros(fft_result.len());
    let normalization = 1.0 / (fftsize as f64);

    for i in 0..fft_result.len() {
        psd[i] = fft_result[i].norm_sqr() * normalization;
    }

    // Handle DC and Nyquist components for real signals
    if fftsize.is_multiple_of(2) && fft_result.len() > 1 {
        // Double all except DC and Nyquist
        for i in 1..fft_result.len() - 1 {
            psd[i] *= 2.0;
        }
    } else {
        // Double all except DC
        for i in 1..fft_result.len() {
            psd[i] *= 2.0;
        }
    }

    Ok(psd)
}

/// Welch's method for PSD estimation with overlap
///
/// Provides better statistical properties than the periodogram by averaging
/// multiple overlapped segments.
///
/// # Arguments
///
/// * `signal` - Input signal
/// * `nperseg` - Length of each segment
/// * `overlap` - Overlap between segments (0.0 to 1.0)
/// * `window` - Window function
///
/// # Returns
///
/// * Power spectral density estimate
#[allow(dead_code)]
pub fn welch_psd(
    signal: &ArrayView1<f64>,
    nperseg: usize,
    overlap: f64,
    window: WindowFunction,
) -> LinalgResult<Array1<f64>> {
    if !(0.0..1.0).contains(&overlap) {
        return Err(LinalgError::ShapeError(
            "Overlap must be between 0.0 and 1.0".to_string(),
        ));
    }

    let n = signal.len();
    let step = ((1.0 - overlap) * nperseg as f64) as usize;
    let num_segments = if n >= nperseg {
        (n - nperseg) / step + 1
    } else {
        0
    };

    if num_segments == 0 {
        return Err(LinalgError::ShapeError(
            "Signal too short for given segment length".to_string(),
        ));
    }

    let fftsize = nperseg.next_power_of_two();
    let outputsize = fftsize / 2 + 1;
    let mut psd_sum = Array1::zeros(outputsize);

    for seg in 0..num_segments {
        let start = seg * step;
        let end = (start + nperseg).min(n);

        // Extract segment
        let mut segment = Array1::zeros(nperseg);
        for i in 0..(end - start) {
            segment[i] = signal[start + i];
        }

        // Compute PSD for this segment
        let segment_psd = periodogram_psd(&segment.view(), window, Some(fftsize))?;

        // Add to sum
        for i in 0..outputsize {
            psd_sum[i] += segment_psd[i];
        }
    }

    // Average over segments
    for i in 0..outputsize {
        psd_sum[i] /= num_segments as f64;
    }

    Ok(psd_sum)
}

/// Fast Hadamard Transform (FHT) using recursive algorithm
///
/// The Hadamard transform is a generalization of the discrete Fourier transform
/// that uses a different basis. It's particularly useful in signal processing,
/// coding theory, and quantum computing.
///
/// # Arguments
///
/// * `input` - Input sequence (length must be a power of 2)
/// * `inverse` - Whether to compute the inverse transform
///
/// # Returns
///
/// * Hadamard transform coefficients
///
/// # Examples
///
/// ```
/// use scirs2_core::ndarray::array;
/// use scirs2_linalg::fft::hadamard_transform;
///
/// let input = array![1.0, 1.0, 1.0, 1.0];
/// let result = hadamard_transform(&input.view(), false).expect("Operation failed");
/// ```
#[allow(dead_code)]
pub fn hadamard_transform(input: &ArrayView1<f64>, inverse: bool) -> LinalgResult<Array1<f64>> {
    let n = input.len();

    if !n.is_power_of_two() {
        return Err(LinalgError::ShapeError(
            "Input length must be a power of 2 for Hadamard transform".to_string(),
        ));
    }

    if n == 0 {
        return Ok(Array1::zeros(0));
    }

    let mut data = input.to_owned();
    let mut size = 1;

    // Iterative Hadamard transform using butterfly operations
    while size < n {
        for start in (0..n).step_by(size * 2) {
            for i in 0..size {
                let left = start + i;
                let right = start + i + size;

                if right < n {
                    let a = data[left];
                    let b = data[right];
                    data[left] = a + b;
                    data[right] = a - b;
                }
            }
        }
        size *= 2;
    }

    // For inverse transform, divide by n
    if inverse {
        let scale = 1.0 / n as f64;
        data.mapv_inplace(|x| x * scale);
    }

    Ok(data)
}

/// Walsh-Hadamard Transform (WHT) using natural ordering
///
/// This is a variation of the Hadamard transform with natural ordering
/// of basis functions, often used in coding theory and cryptography.
///
/// # Arguments
///
/// * `input` - Input sequence (length must be a power of 2)
/// * `inverse` - Whether to compute the inverse transform
///
/// # Returns
///
/// * Walsh-Hadamard transform coefficients
#[allow(dead_code)]
pub fn walsh_hadamard_transform(
    input: &ArrayView1<f64>,
    inverse: bool,
) -> LinalgResult<Array1<f64>> {
    let n = input.len();

    if !n.is_power_of_two() {
        return Err(LinalgError::ShapeError(
            "Input length must be a power of 2 for Walsh-Hadamard transform".to_string(),
        ));
    }

    let mut data = input.to_owned();
    let log_n = (n as f64).log2() as usize;

    // Bit-reversal permutation for natural ordering
    for i in 0..n {
        let j = bit_reverse(i, log_n);
        if i < j {
            data.swap(i, j);
        }
    }

    // Apply Hadamard transform
    hadamard_transform(&data.view(), inverse)
}

/// Bit-reverse function for Walsh-Hadamard ordering
#[allow(dead_code)]
fn bit_reverse(mut n: usize, bits: usize) -> usize {
    let mut result = 0;
    for _ in 0..bits {
        result = (result << 1) | (n & 1);
        n >>= 1;
    }
    result
}

/// Fast Walsh Transform (FWT) for Boolean functions
///
/// This transform is particularly useful in Boolean function analysis,
/// cryptography, and coding theory.
///
/// # Arguments
///
/// * `input` - Input sequence representing truth table values
/// * `inverse` - Whether to compute the inverse transform
///
/// # Returns
///
/// * Walsh coefficients
#[allow(dead_code)]
pub fn fast_walsh_transform(input: &ArrayView1<f64>, inverse: bool) -> LinalgResult<Array1<f64>> {
    let n = input.len();

    if !n.is_power_of_two() {
        return Err(LinalgError::ShapeError(
            "Input length must be a power of 2 for Fast Walsh Transform".to_string(),
        ));
    }

    let mut data = input.to_owned();
    let mut h = 1;

    while h < n {
        for i in (0..n).step_by(h * 2) {
            for j in i..i + h {
                let u = data[j];
                let v = data[j + h];
                data[j] = u + v;
                data[j + h] = u - v;
            }
        }
        h *= 2;
    }

    // Normalization for inverse transform
    if inverse {
        let scale = 1.0 / n as f64;
        data.mapv_inplace(|x| x * scale);
    }

    Ok(data)
}

/// Generate frequency bins for FFT output
///
/// # Arguments
///
/// * `n` - FFT size
/// * `sample_rate` - Sampling rate
/// * `real_fft` - Whether this is for RFFT (half spectrum)
///
/// # Returns
///
/// * Frequency bins in Hz
#[allow(dead_code)]
pub fn fft_frequencies(n: usize, sample_rate: f64, realfft: bool) -> Array1<f64> {
    let outputsize = if realfft { n / 2 + 1 } else { n };
    let mut freqs = Array1::zeros(outputsize);

    let df = sample_rate / n as f64;

    if realfft {
        for i in 0..outputsize {
            freqs[i] = i as f64 * df;
        }
    } else {
        for i in 0..outputsize {
            freqs[i] = if i <= n / 2 {
                i as f64 * df
            } else {
                (i as i64 - n as i64) as f64 * df
            };
        }
    }

    freqs
}

#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_relative_eq;
    use scirs2_core::ndarray::array;

    #[test]
    fn test_fft_plan_creation() {
        let plan =
            FFTPlan::<f64>::new(8, FFTAlgorithm::CooleyTukey, false).expect("Operation failed");
        assert_eq!(plan.size, 8);
        assert_eq!(plan.twiddle_factors.len(), 8);
        assert_eq!(plan.bit_reversal.len(), 8);
    }

    #[test]
    fn test_fft_1d_basic() {
        let input = array![
            Complex64::new(1.0, 0.0),
            Complex64::new(0.0, 0.0),
            Complex64::new(0.0, 0.0),
            Complex64::new(0.0, 0.0),
        ];

        let result = fft_1d(&input.view(), false).expect("Operation failed");
        assert_eq!(result.len(), 4);

        // DC component should be 1
        assert_relative_eq!(result[0].re, 1.0, epsilon = 1e-10);
        assert_relative_eq!(result[0].im, 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_fft_inverse_property() {
        let input = array![
            Complex64::new(1.0, 0.5),
            Complex64::new(0.2, -0.3),
            Complex64::new(-0.1, 0.8),
            Complex64::new(0.7, -0.2),
        ];

        let fft_result = fft_1d(&input.view(), false).expect("Operation failed");
        let ifft_result = fft_1d(&fft_result.view(), true).expect("Operation failed");

        for i in 0..input.len() {
            assert_relative_eq!(input[i].re, ifft_result[i].re, epsilon = 1e-12);
            assert_relative_eq!(input[i].im, ifft_result[i].im, epsilon = 1e-12);
        }
    }

    #[test]
    fn test_rfft_1d() {
        let input = array![1.0, 0.0, 0.0, 0.0];
        let result = rfft_1d(&input.view()).expect("Operation failed");

        assert_eq!(result.len(), 3); // N/2 + 1
        assert_relative_eq!(result[0].re, 1.0, epsilon = 1e-10);
        assert_relative_eq!(result[0].im, 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_irfft_1d() {
        let input = array![1.0, 0.0, 0.0, 0.0];
        let fft_result = rfft_1d(&input.view()).expect("Operation failed");
        let reconstructed = irfft_1d(&fft_result.view(), 4).expect("Operation failed");

        for i in 0..input.len() {
            assert_relative_eq!(input[i], reconstructed[i], epsilon = 1e-12);
        }
    }

    #[test]
    fn test_fft_2d() {
        let input = Array2::from_shape_fn((4, 4), |(i, j)| Complex64::new((i + j) as f64, 0.0));

        let result = fft_2d(&input.view(), false).expect("Operation failed");
        assert_eq!(result.shape(), &[4, 4]);

        let reconstructed = fft_2d(&result.view(), true).expect("Operation failed");

        for i in 0..4 {
            for j in 0..4 {
                assert_relative_eq!(input[[i, j]].re, reconstructed[[i, j]].re, epsilon = 1e-12);
                assert_relative_eq!(input[[i, j]].im, reconstructed[[i, j]].im, epsilon = 1e-12);
            }
        }
    }

    #[test]
    fn test_window_functions() {
        let signal = array![1.0, 1.0, 1.0, 1.0];

        // Rectangular window should not change the signal
        let rect =
            apply_window(&signal.view(), WindowFunction::Rectangular).expect("Operation failed");
        for i in 0..signal.len() {
            assert_relative_eq!(signal[i], rect[i], epsilon = 1e-10);
        }

        // Hann window should taper to zero at edges
        let hann = apply_window(&signal.view(), WindowFunction::Hann).expect("Operation failed");
        assert_relative_eq!(hann[0], 0.0, epsilon = 1e-10);
        assert_relative_eq!(hann[3], 0.0, epsilon = 1e-10);
        assert!(hann[1] > 0.0);
        assert!(hann[2] > 0.0);
    }

    #[test]
    fn test_dct_1d() {
        let input = array![1.0, 0.0, 0.0, 0.0];
        let dct_result = dct_1d(&input.view()).expect("Operation failed");
        let idct_result = idct_1d(&dct_result.view()).expect("Operation failed");

        for i in 0..input.len() {
            assert_relative_eq!(input[i], idct_result[i], epsilon = 1e-12);
        }
    }

    #[test]
    fn test_dst_1d() {
        let input = array![1.0, 2.0, 3.0, 4.0];
        let dst_result = dst_1d(&input.view()).expect("Operation failed");
        assert_eq!(dst_result.len(), 4);
        assert!(!dst_result.iter().all(|&x| x == 0.0));
    }

    #[test]
    fn test_fft_convolve() {
        let signal1 = array![1.0, 2.0, 3.0];
        let signal2 = array![0.5, 1.5];

        let result = fft_convolve(&signal1.view(), &signal2.view()).expect("Operation failed");
        assert_eq!(result.len(), 4); // n1 + n2 - 1

        // Manual convolution check for first element
        assert_relative_eq!(result[0], 1.0 * 0.5, epsilon = 1e-10);
    }

    #[test]
    fn test_periodogram_psd() {
        let signal = Array1::from_shape_fn(16, |i| (2.0 * PI * i as f64 / 16.0).sin());
        let psd = periodogram_psd(&signal.view(), WindowFunction::Rectangular, None)
            .expect("Operation failed");

        assert_eq!(psd.len(), 9); // N/2 + 1 for real FFT
        assert!(psd.iter().all(|&x| x >= 0.0));
    }

    #[test]
    fn test_welch_psd() {
        let signal = Array1::from_shape_fn(64, |i| (2.0 * PI * i as f64 / 8.0).sin());
        let psd =
            welch_psd(&signal.view(), 16, 0.5, WindowFunction::Hann).expect("Operation failed");

        assert!(!psd.is_empty());
        assert!(psd.iter().all(|&x| x >= 0.0));
    }

    #[test]
    fn test_fft_frequencies() {
        let freqs = fft_frequencies(8, 1000.0, true);
        assert_eq!(freqs.len(), 5); // N/2 + 1

        assert_relative_eq!(freqs[0], 0.0, epsilon = 1e-10);
        assert_relative_eq!(freqs[1], 125.0, epsilon = 1e-10); // 1000/8
        assert_relative_eq!(freqs[4], 500.0, epsilon = 1e-10); // Nyquist
    }

    #[test]
    fn test_bluestein_arbitrarysize() {
        let input = array![
            Complex64::new(1.0, 0.0),
            Complex64::new(0.0, 0.0),
            Complex64::new(0.0, 0.0),
            Complex64::new(0.0, 0.0),
            Complex64::new(0.0, 0.0),
        ]; // Size 5 (not power of 2)

        let result = bluestein_fft(&input.view(), false).expect("Operation failed");
        let reconstructed = bluestein_fft(&result.view(), true).expect("Operation failed");

        for i in 0..input.len() {
            assert_relative_eq!(input[i].re, reconstructed[i].re, epsilon = 1e-10);
            assert_relative_eq!(input[i].im, reconstructed[i].im, epsilon = 1e-10);
        }
    }

    #[test]
    fn test_fft_3d() {
        let input = Array3::from_shape_fn((2, 2, 2), |(i, j, k)| {
            Complex64::new((i + j + k) as f64, 0.0)
        });

        let result = fft_3d(&input.view(), false).expect("Operation failed");
        assert_eq!(result.shape(), &[2, 2, 2]);

        let reconstructed = fft_3d(&result.view(), true).expect("Operation failed");

        for i in 0..2 {
            for j in 0..2 {
                for k in 0..2 {
                    assert_relative_eq!(
                        input[[i, j, k]].re,
                        reconstructed[[i, j, k]].re,
                        epsilon = 1e-12
                    );
                    assert_relative_eq!(
                        input[[i, j, k]].im,
                        reconstructed[[i, j, k]].im,
                        epsilon = 1e-12
                    );
                }
            }
        }
    }

    #[test]
    fn test_kaiser_window() {
        let signal = array![1.0, 1.0, 1.0, 1.0, 1.0];
        let windowed =
            apply_window(&signal.view(), WindowFunction::Kaiser(2.0)).expect("Operation failed");

        // Kaiser window should taper towards edges
        assert!(windowed[0] < windowed[2]); // Edge less than center
        assert!(windowed[4] < windowed[2]); // Edge less than center
        assert!(windowed[2] > 0.0); // Center should be positive
    }

    #[test]
    fn test_tukey_window() {
        let signal = Array1::ones(10);
        let windowed =
            apply_window(&signal.view(), WindowFunction::Tukey(0.5)).expect("Operation failed");

        // Tukey window should have flat top in middle
        assert!(windowed[0] < windowed[5]); // Edge less than center
        assert!(windowed[9] < windowed[5]); // Edge less than center
    }

    #[test]
    fn test_hadamard_transform() {
        let input = array![1.0, 1.0, 1.0, 1.0];
        let result = hadamard_transform(&input.view(), false).expect("Operation failed");

        // For input [1,1,1,1], Hadamard transform should be [4,0,0,0]
        assert_relative_eq!(result[0], 4.0, epsilon = 1e-12);
        assert_relative_eq!(result[1], 0.0, epsilon = 1e-12);
        assert_relative_eq!(result[2], 0.0, epsilon = 1e-12);
        assert_relative_eq!(result[3], 0.0, epsilon = 1e-12);

        // Test inverse
        let reconstructed = hadamard_transform(&result.view(), true).expect("Operation failed");
        for i in 0..4 {
            assert_relative_eq!(input[i], reconstructed[i], epsilon = 1e-12);
        }
    }

    #[test]
    fn test_walsh_hadamard_transform() {
        let input = array![1.0, 0.0, 1.0, 0.0];
        let result = walsh_hadamard_transform(&input.view(), false).expect("Operation failed");

        // Test that it produces a valid transform
        assert_eq!(result.len(), 4);

        // Test inverse
        let reconstructed =
            walsh_hadamard_transform(&result.view(), true).expect("Operation failed");
        for i in 0..4 {
            assert_relative_eq!(input[i], reconstructed[i], epsilon = 1e-12);
        }
    }

    #[test]
    fn test_fast_walsh_transform() {
        let input = array![1.0, -1.0, 1.0, -1.0];
        let result = fast_walsh_transform(&input.view(), false).expect("Operation failed");

        // Test dimensions
        assert_eq!(result.len(), 4);

        // Test inverse
        let reconstructed = fast_walsh_transform(&result.view(), true).expect("Operation failed");
        for i in 0..4 {
            assert_relative_eq!(input[i], reconstructed[i], epsilon = 1e-12);
        }
    }

    #[test]
    fn test_hadamard_transform_properties() {
        // Test that Hadamard transform is involutory (self-inverse up to scaling)
        let input = array![1.0, 2.0, 3.0, 4.0];
        let transformed = hadamard_transform(&input.view(), false).expect("Operation failed");
        let twice_transformed =
            hadamard_transform(&transformed.view(), false).expect("Operation failed");

        // H²x = n*x for unnormalized Hadamard transform
        let n = input.len() as f64;
        for i in 0..4 {
            assert_relative_eq!(twice_transformed[i], n * input[i], epsilon = 1e-12);
        }
    }

    #[test]
    fn test_bit_reverse() {
        assert_eq!(bit_reverse(0, 3), 0); // 000 -> 000
        assert_eq!(bit_reverse(1, 3), 4); // 001 -> 100
        assert_eq!(bit_reverse(2, 3), 2); // 010 -> 010
        assert_eq!(bit_reverse(3, 3), 6); // 011 -> 110
        assert_eq!(bit_reverse(4, 3), 1); // 100 -> 001
    }
}