oxifft 0.1.4

Pure Rust implementation of FFTW - the Fastest Fourier Transform in the West
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
//! Non-twiddle (base case) codelets.
//!
//! These are the leaf-level DFT kernels that don't require twiddle factors.

use crate::kernel::{Complex, Float};

/// Size-2 DFT (butterfly).
#[inline]
pub fn notw_2<T: Float>(x: &mut [Complex<T>]) {
    debug_assert!(x.len() >= 2);
    let a = x[0];
    let b = x[1];
    x[0] = a + b;
    x[1] = a - b;
}

/// Size-3 DFT.
///
/// Uses Winograd's algorithm for minimal multiplications.
/// Twiddle factors: W_3 = e^{-2πi/3} = -1/2 - i*(√3/2) for forward.
#[inline]
pub fn notw_3<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 3);

    // Constants for size-3 DFT
    // cos(2π/3) = -1/2
    // sin(2π/3) = √3/2 ≈ 0.8660254037844386
    let c = T::from_f64(-0.5);
    let s = T::from_f64(0.866_025_403_784_438_6);

    let x0 = x[0];
    let x1 = x[1];
    let x2 = x[2];

    // Sum of all inputs
    let t0 = x1 + x2;
    let t1 = x0 + t0 * c; // x0 + (x1+x2)*cos(2π/3)

    // Difference term for imaginary rotation
    let t2 = x1 - x2;

    // Apply ±i*sin(2π/3)*(x1-x2)
    // For forward (sign < 0): -i*sin means (im, -re)
    // For inverse (sign > 0): +i*sin means (-im, re)
    let t2_rot = if sign < 0 {
        Complex::new(t2.im * s, -t2.re * s)
    } else {
        Complex::new(-t2.im * s, t2.re * s)
    };

    // Output
    x[0] = x0 + t0; // DC component
    x[1] = t1 + t2_rot;
    x[2] = t1 - t2_rot;
}

/// Size-5 DFT.
///
/// Uses Rader/Winograd-style algorithm for reduced operation count.
/// Twiddle factors: W_5^k = e^{-2πik/5} for forward.
#[inline]
pub fn notw_5<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 5);

    // Constants for size-5 DFT
    // cos(2π/5) ≈ 0.309016994374947
    // cos(4π/5) ≈ -0.809016994374947
    // sin(2π/5) ≈ 0.951056516295154
    // sin(4π/5) ≈ 0.587785252292473
    let c1 = T::from_f64(0.309_016_994_374_947_4); // cos(2π/5)
    let c2 = T::from_f64(-0.809_016_994_374_947_4); // cos(4π/5)
    let s1 = T::from_f64(0.951_056_516_295_153_5); // sin(2π/5)
    let s2 = T::from_f64(0.587_785_252_292_473_1); // sin(4π/5)

    let x0 = x[0];
    let x1 = x[1];
    let x2 = x[2];
    let x3 = x[3];
    let x4 = x[4];

    // Symmetric combinations
    let a1 = x1 + x4; // x[1] + x[4]
    let a2 = x2 + x3; // x[2] + x[3]
    let b1 = x1 - x4; // x[1] - x[4]
    let b2 = x2 - x3; // x[2] - x[3]

    // Real parts of outputs (before adding x0)
    let r1 = a1 * c1 + a2 * c2; // cos(2π/5)*(x1+x4) + cos(4π/5)*(x2+x3)
    let r2 = a1 * c2 + a2 * c1; // cos(4π/5)*(x1+x4) + cos(2π/5)*(x2+x3)

    // Imaginary rotation terms
    // For forward: multiply by -i*sin
    // For inverse: multiply by +i*sin
    let t1 = b1 * s1 + b2 * s2;
    let t2 = b1 * s2 - b2 * s1;

    let (i1, i2) = if sign < 0 {
        // Forward: -i * (sin(2π/5)*b1 + sin(4π/5)*b2)
        (Complex::new(t1.im, -t1.re), Complex::new(t2.im, -t2.re))
    } else {
        // Inverse: +i * (sin(2π/5)*b1 + sin(4π/5)*b2)
        (Complex::new(-t1.im, t1.re), Complex::new(-t2.im, t2.re))
    };

    // DC component
    x[0] = x0 + a1 + a2;

    // Other outputs
    x[1] = x0 + r1 + i1;
    x[4] = x0 + r1 - i1;
    x[2] = x0 + r2 + i2;
    x[3] = x0 + r2 - i2;
}

/// Size-7 DFT.
///
/// Uses Rader/Winograd-style algorithm for reduced operation count.
/// Twiddle factors: W_7^k = e^{-2πik/7} for forward.
#[inline]
pub fn notw_7<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 7);

    // Constants for size-7 DFT
    // cos(2π/7), cos(4π/7), cos(6π/7)
    // sin(2π/7), sin(4π/7), sin(6π/7)
    let c1 = T::from_f64(0.623_489_801_858_734); // cos(2π/7)
    let c2 = T::from_f64(-0.222_520_933_956_314); // cos(4π/7)
    let c3 = T::from_f64(-0.900_968_867_902_419); // cos(6π/7)
    let s1 = T::from_f64(0.781_831_482_468_03); // sin(2π/7)
    let s2 = T::from_f64(0.974_927_912_181_824); // sin(4π/7)
    let s3 = T::from_f64(0.433_883_739_117_558); // sin(6π/7)

    let x0 = x[0];
    let x1 = x[1];
    let x2 = x[2];
    let x3 = x[3];
    let x4 = x[4];
    let x5 = x[5];
    let x6 = x[6];

    // Symmetric combinations
    let a1 = x1 + x6;
    let a2 = x2 + x5;
    let a3 = x3 + x4;
    let b1 = x1 - x6;
    let b2 = x2 - x5;
    let b3 = x3 - x4;

    // Real parts
    let r1 = a1 * c1 + a2 * c2 + a3 * c3;
    let r2 = a1 * c2 + a2 * c3 + a3 * c1;
    let r3 = a1 * c3 + a2 * c1 + a3 * c2;

    // Imaginary rotation terms
    let t1 = b1 * s1 + b2 * s2 + b3 * s3;
    let t2 = b1 * s2 - b2 * s3 - b3 * s1;
    let t3 = b1 * s3 - b2 * s1 + b3 * s2;

    let (i1, i2, i3) = if sign < 0 {
        (
            Complex::new(t1.im, -t1.re),
            Complex::new(t2.im, -t2.re),
            Complex::new(t3.im, -t3.re),
        )
    } else {
        (
            Complex::new(-t1.im, t1.re),
            Complex::new(-t2.im, t2.re),
            Complex::new(-t3.im, t3.re),
        )
    };

    // DC component
    x[0] = x0 + a1 + a2 + a3;

    // Other outputs
    x[1] = x0 + r1 + i1;
    x[6] = x0 + r1 - i1;
    x[2] = x0 + r2 + i2;
    x[5] = x0 + r2 - i2;
    x[3] = x0 + r3 + i3;
    x[4] = x0 + r3 - i3;
}

/// Size-4 DFT.
#[inline]
pub fn notw_4<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 4);

    let x0 = x[0];
    let x1 = x[1];
    let x2 = x[2];
    let x3 = x[3];

    // First stage
    let t0 = x0 + x2;
    let t1 = x0 - x2;
    let t2 = x1 + x3;
    let t3 = x1 - x3;

    // Apply -i or +i rotation based on sign
    let t3_rot = if sign < 0 {
        Complex::new(t3.im, -t3.re)
    } else {
        Complex::new(-t3.im, t3.re)
    };

    // Second stage
    x[0] = t0 + t2;
    x[2] = t0 - t2;
    x[1] = t1 + t3_rot;
    x[3] = t1 - t3_rot;
}

/// Size-8 DFT.
///
/// Uses a radix-2 decimation-in-frequency approach with manually unrolled butterflies.
/// Twiddle factors are W8^k = e^(-2πik/8) for forward, e^(+2πik/8) for inverse.
#[inline]
pub fn notw_8<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 8);

    // Constants: cos(π/4) = sin(π/4) = 1/sqrt(2) ≈ 0.7071067811865476
    let sqrt2_2 = T::from_f64(core::f64::consts::FRAC_1_SQRT_2);

    // Load all inputs
    let x0 = x[0];
    let x1 = x[1];
    let x2 = x[2];
    let x3 = x[3];
    let x4 = x[4];
    let x5 = x[5];
    let x6 = x[6];
    let x7 = x[7];

    // Stage 1: 4 radix-2 butterflies (no twiddles)
    let t0 = x0 + x4;
    let t1 = x0 - x4;
    let t2 = x2 + x6;
    let t3 = x2 - x6;
    let t4 = x1 + x5;
    let t5 = x1 - x5;
    let t6 = x3 + x7;
    let t7 = x3 - x7;

    // Stage 2: Apply twiddles and 4 more butterflies
    // W8^0 = 1
    // W8^1 = (1-i)/sqrt(2) for forward, (1+i)/sqrt(2) for inverse
    // W8^2 = -i for forward, +i for inverse
    // W8^3 = (-1-i)/sqrt(2) for forward, (-1+i)/sqrt(2) for inverse

    // t3 *= W8^2 = -i (forward) or +i (inverse)
    let t3_rot = if sign < 0 {
        Complex::new(t3.im, -t3.re) // multiply by -i
    } else {
        Complex::new(-t3.im, t3.re) // multiply by +i
    };

    // t5 *= W8^1
    let t5_rot = if sign < 0 {
        // W8^1 = e^(-iπ/4) = (1-i)/sqrt(2)
        Complex::new((t5.re + t5.im) * sqrt2_2, (-t5.re + t5.im) * sqrt2_2)
    } else {
        // W8^(-1) = e^(+iπ/4) = (1+i)/sqrt(2)
        Complex::new((t5.re - t5.im) * sqrt2_2, (t5.re + t5.im) * sqrt2_2)
    };

    // t7 *= W8^3
    let t7_rot = if sign < 0 {
        // W8^3 = e^(-3iπ/4) = (-1-i)/sqrt(2)
        Complex::new((-t7.re + t7.im) * sqrt2_2, (-t7.re - t7.im) * sqrt2_2)
    } else {
        // W8^(-3) = e^(+3iπ/4) = (-1+i)/sqrt(2)
        Complex::new((-t7.re - t7.im) * sqrt2_2, (t7.re - t7.im) * sqrt2_2)
    };

    // 4 more butterflies
    let u0 = t0 + t2;
    let u1 = t0 - t2;
    let u2 = t4 + t6;
    let u3 = t4 - t6;
    let u4 = t1 + t3_rot;
    let u5 = t1 - t3_rot;
    let u6 = t5_rot + t7_rot;
    let u7 = t5_rot - t7_rot;

    // Stage 3: Final butterflies with twiddle W4^k for second half
    // u3 *= W4^1 = -i (forward) or +i (inverse)
    let u3_rot = if sign < 0 {
        Complex::new(u3.im, -u3.re)
    } else {
        Complex::new(-u3.im, u3.re)
    };

    // u7 *= W4^1 = -i (forward) or +i (inverse)
    let u7_rot = if sign < 0 {
        Complex::new(u7.im, -u7.re)
    } else {
        Complex::new(-u7.im, u7.re)
    };

    // Final outputs in bit-reversed order, then reorder
    // DIF produces bit-reversed output, so we need to reorder to natural order
    let y0 = u0 + u2; // X[0]
    let y4 = u0 - u2; // X[4]
    let y2 = u1 + u3_rot; // X[2]
    let y6 = u1 - u3_rot; // X[6]
    let y1 = u4 + u6; // X[1]
    let y5 = u4 - u6; // X[5]
    let y3 = u5 + u7_rot; // X[3]
    let y7 = u5 - u7_rot; // X[7]

    x[0] = y0;
    x[1] = y1;
    x[2] = y2;
    x[3] = y3;
    x[4] = y4;
    x[5] = y5;
    x[6] = y6;
    x[7] = y7;
}

/// Size-16 DFT.
///
/// Uses a standard Cooley-Tukey radix-2 DIT algorithm with explicit stages.
/// This delegates to two size-8 sub-transforms for correctness.
#[inline]
pub fn notw_16<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 16);

    // Twiddle factors W16^k = e^(-2πik/16) for forward (sign < 0)
    // or W16^(-k) = e^(+2πik/16) for inverse (sign > 0)
    let c1 = T::from_f64(0.923_879_532_511_286_7); // cos(π/8)
    let s1 = T::from_f64(0.382_683_432_365_089_8); // sin(π/8)
    let c2 = T::from_f64(core::f64::consts::FRAC_1_SQRT_2); // cos(π/4) = sin(π/4)
    let c3 = s1; // cos(3π/8) = sin(π/8)
    let s3 = c1; // sin(3π/8) = cos(π/8)

    // Step 1: Bit-reversal permutation of input
    // For DIT, we need input in bit-reversed order
    // Bit-reverse mapping for 4 bits: swap elements at positions that are bit-reverses
    let mut a = [Complex::<T>::zero(); 16];
    a[0] = x[0];
    a[1] = x[8];
    a[2] = x[4];
    a[3] = x[12];
    a[4] = x[2];
    a[5] = x[10];
    a[6] = x[6];
    a[7] = x[14];
    a[8] = x[1];
    a[9] = x[9];
    a[10] = x[5];
    a[11] = x[13];
    a[12] = x[3];
    a[13] = x[11];
    a[14] = x[7];
    a[15] = x[15];

    // Stage 1: 8 butterflies with span 1 (no twiddles needed, W2^0 = 1)
    for i in (0..16).step_by(2) {
        let t = a[i + 1];
        a[i + 1] = a[i] - t;
        a[i] = a[i] + t;
    }

    // Stage 2: 4 groups of 2 butterflies with span 2
    // Twiddle factors: W4^0 = 1, W4^1 = -i (forward) or +i (inverse)
    for group in (0..16).step_by(4) {
        // k=0: W4^0 = 1
        let t = a[group + 2];
        a[group + 2] = a[group] - t;
        a[group] = a[group] + t;

        // k=1: W4^1 = -i (forward) or +i (inverse)
        let t = a[group + 3];
        let t_tw = if sign < 0 {
            Complex::new(t.im, -t.re) // multiply by -i
        } else {
            Complex::new(-t.im, t.re) // multiply by +i
        };
        a[group + 3] = a[group + 1] - t_tw;
        a[group + 1] = a[group + 1] + t_tw;
    }

    // Stage 3: 2 groups of 4 butterflies with span 4
    // Twiddle factors: W8^0, W8^1, W8^2, W8^3
    for group in (0..16).step_by(8) {
        // k=0: W8^0 = 1
        let t = a[group + 4];
        a[group + 4] = a[group] - t;
        a[group] = a[group] + t;

        // k=1: W8^1 = (1-i)/sqrt(2) (forward) or (1+i)/sqrt(2) (inverse)
        let t = a[group + 5];
        let t_tw = if sign < 0 {
            Complex::new((t.re + t.im) * c2, (t.im - t.re) * c2)
        } else {
            Complex::new((t.re - t.im) * c2, (t.im + t.re) * c2)
        };
        a[group + 5] = a[group + 1] - t_tw;
        a[group + 1] = a[group + 1] + t_tw;

        // k=2: W8^2 = -i (forward) or +i (inverse)
        let t = a[group + 6];
        let t_tw = if sign < 0 {
            Complex::new(t.im, -t.re)
        } else {
            Complex::new(-t.im, t.re)
        };
        a[group + 6] = a[group + 2] - t_tw;
        a[group + 2] = a[group + 2] + t_tw;

        // k=3: W8^3 = (-1-i)/sqrt(2) (forward) or (-1+i)/sqrt(2) (inverse)
        let t = a[group + 7];
        let t_tw = if sign < 0 {
            Complex::new((-t.re + t.im) * c2, (-t.im - t.re) * c2)
        } else {
            Complex::new((-t.re - t.im) * c2, (-t.im + t.re) * c2)
        };
        a[group + 7] = a[group + 3] - t_tw;
        a[group + 3] = a[group + 3] + t_tw;
    }

    // Stage 4: 1 group of 8 butterflies with span 8
    // Twiddle factors: W16^0..W16^7
    // k=0: W16^0 = 1
    let t = a[8];
    a[8] = a[0] - t;
    a[0] = a[0] + t;

    // k=1: W16^1 = cos(π/8) - i*sin(π/8) (forward)
    let t = a[9];
    let t_tw = if sign < 0 {
        Complex::new(t.re * c1 + t.im * s1, t.im * c1 - t.re * s1)
    } else {
        Complex::new(t.re * c1 - t.im * s1, t.im * c1 + t.re * s1)
    };
    a[9] = a[1] - t_tw;
    a[1] = a[1] + t_tw;

    // k=2: W16^2 = (1-i)/sqrt(2) (forward)
    let t = a[10];
    let t_tw = if sign < 0 {
        Complex::new((t.re + t.im) * c2, (t.im - t.re) * c2)
    } else {
        Complex::new((t.re - t.im) * c2, (t.im + t.re) * c2)
    };
    a[10] = a[2] - t_tw;
    a[2] = a[2] + t_tw;

    // k=3: W16^3 = cos(3π/8) - i*sin(3π/8) (forward)
    let t = a[11];
    let t_tw = if sign < 0 {
        Complex::new(t.re * c3 + t.im * s3, t.im * c3 - t.re * s3)
    } else {
        Complex::new(t.re * c3 - t.im * s3, t.im * c3 + t.re * s3)
    };
    a[11] = a[3] - t_tw;
    a[3] = a[3] + t_tw;

    // k=4: W16^4 = -i (forward) or +i (inverse)
    let t = a[12];
    let t_tw = if sign < 0 {
        Complex::new(t.im, -t.re)
    } else {
        Complex::new(-t.im, t.re)
    };
    a[12] = a[4] - t_tw;
    a[4] = a[4] + t_tw;

    // k=5: W16^5 = sin(3π/8) - i*cos(3π/8) = cos(π/8) * (-sin(π/8)/cos(π/8) - i)
    // Actually: W16^5 = cos(5π/8) - i*sin(5π/8) = -sin(π/8) - i*cos(π/8) (forward)
    let t = a[13];
    let t_tw = if sign < 0 {
        Complex::new(-t.re * s1 + t.im * c1, -t.im * s1 - t.re * c1)
    } else {
        Complex::new(-t.re * s1 - t.im * c1, -t.im * s1 + t.re * c1)
    };
    a[13] = a[5] - t_tw;
    a[5] = a[5] + t_tw;

    // k=6: W16^6 = (-1-i)/sqrt(2) (forward)
    let t = a[14];
    let t_tw = if sign < 0 {
        Complex::new((-t.re + t.im) * c2, (-t.im - t.re) * c2)
    } else {
        Complex::new((-t.re - t.im) * c2, (-t.im + t.re) * c2)
    };
    a[14] = a[6] - t_tw;
    a[6] = a[6] + t_tw;

    // k=7: W16^7 = cos(7π/8) - i*sin(7π/8) = -cos(π/8) - i*sin(π/8) (forward)
    let t = a[15];
    let t_tw = if sign < 0 {
        Complex::new(-t.re * c1 + t.im * s1, -t.im * c1 - t.re * s1)
    } else {
        Complex::new(-t.re * c1 - t.im * s1, -t.im * c1 + t.re * s1)
    };
    a[15] = a[7] - t_tw;
    a[7] = a[7] + t_tw;

    // Output is in natural order after DIT
    x[0] = a[0];
    x[1] = a[1];
    x[2] = a[2];
    x[3] = a[3];
    x[4] = a[4];
    x[5] = a[5];
    x[6] = a[6];
    x[7] = a[7];
    x[8] = a[8];
    x[9] = a[9];
    x[10] = a[10];
    x[11] = a[11];
    x[12] = a[12];
    x[13] = a[13];
    x[14] = a[14];
    x[15] = a[15];
}

/// Size-32 DFT.
///
/// Uses a radix-2 DIT decomposition: two size-16 sub-transforms combined with twiddles.
#[inline]
pub fn notw_32<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 32);

    // Split into even and odd indices for Cooley-Tukey decomposition
    let mut even = [Complex::<T>::zero(); 16];
    let mut odd = [Complex::<T>::zero(); 16];

    for i in 0..16 {
        even[i] = x[2 * i];
        odd[i] = x[2 * i + 1];
    }

    // Apply size-16 DFT to each half
    notw_16(&mut even, sign);
    notw_16(&mut odd, sign);

    // Combine using twiddles: X[k] = E[k] + W32^k * O[k], X[k+16] = E[k] - W32^k * O[k]
    // W32^k = e^(-2πik/32) for forward, e^(+2πik/32) for inverse

    // Apply twiddles using recurrence (faster than sin_cos in loop)
    // For forward (sign < 0), angle_step = -PI/16
    // For inverse (sign >= 0), angle_step = +PI/16
    let angle_step = if sign < 0 {
        -<T as Float>::PI / T::from_usize(16)
    } else {
        <T as Float>::PI / T::from_usize(16)
    };
    let w_step = Complex::cis(angle_step);
    let mut w = Complex::new(T::one(), T::zero());

    for k in 0..16 {
        // Complex multiply: t = odd[k] * w
        let t = Complex::new(
            odd[k].re * w.re - odd[k].im * w.im,
            odd[k].im * w.re + odd[k].re * w.im,
        );

        x[k] = even[k] + t;
        x[k + 16] = even[k] - t;

        w = w * w_step;
    }
}

/// Size-64 DFT.
///
/// Uses a radix-2 DIT decomposition: two size-32 sub-transforms combined with twiddles.
#[inline]
pub fn notw_64<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 64);

    // Split into even and odd indices for Cooley-Tukey decomposition
    let mut even = [Complex::<T>::zero(); 32];
    let mut odd = [Complex::<T>::zero(); 32];

    for i in 0..32 {
        even[i] = x[2 * i];
        odd[i] = x[2 * i + 1];
    }

    // Apply size-32 DFT to each half
    notw_32(&mut even, sign);
    notw_32(&mut odd, sign);

    // Combine using twiddles: X[k] = E[k] + W64^k * O[k], X[k+32] = E[k] - W64^k * O[k]
    // W64^k = e^(-2πik/64) for forward, e^(+2πik/64) for inverse

    // Apply twiddles using recurrence (faster than sin_cos in loop)
    let angle_step = if sign < 0 {
        -<T as Float>::PI / T::from_usize(32)
    } else {
        <T as Float>::PI / T::from_usize(32)
    };
    let w_step = Complex::cis(angle_step);
    let mut w = Complex::new(T::one(), T::zero());

    for k in 0..32 {
        // Complex multiply: t = odd[k] * w
        let t = Complex::new(
            odd[k].re * w.re - odd[k].im * w.im,
            odd[k].im * w.re + odd[k].re * w.im,
        );

        x[k] = even[k] + t;
        x[k + 32] = even[k] - t;

        w = w * w_step;
    }
}

/// Size-128 DFT.
///
/// Uses a radix-2 DIT decomposition: two size-64 sub-transforms combined with twiddles.
#[inline]
pub fn notw_128<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 128);

    // Split into even and odd indices for Cooley-Tukey decomposition
    let mut even = [Complex::<T>::zero(); 64];
    let mut odd = [Complex::<T>::zero(); 64];

    for i in 0..64 {
        even[i] = x[2 * i];
        odd[i] = x[2 * i + 1];
    }

    // Apply size-64 DFT to each half
    notw_64(&mut even, sign);
    notw_64(&mut odd, sign);

    // Combine using twiddles: X[k] = E[k] + W128^k * O[k], X[k+64] = E[k] - W128^k * O[k]
    // W128^k = e^(-2πik/128) for forward, e^(+2πik/128) for inverse

    // Apply twiddles using recurrence (faster than sin_cos in loop)
    let angle_step = if sign < 0 {
        -<T as Float>::PI / T::from_usize(64)
    } else {
        <T as Float>::PI / T::from_usize(64)
    };
    let w_step = Complex::cis(angle_step);
    let mut w = Complex::new(T::one(), T::zero());

    for k in 0..64 {
        // Complex multiply: t = odd[k] * w
        let t = Complex::new(
            odd[k].re * w.re - odd[k].im * w.im,
            odd[k].im * w.re + odd[k].re * w.im,
        );

        x[k] = even[k] + t;
        x[k + 64] = even[k] - t;

        w = w * w_step;
    }
}

/// Size-256 DFT.
///
/// Uses a radix-2 DIT decomposition: two size-128 sub-transforms combined with twiddles.
#[inline]
pub fn notw_256<T: Float>(x: &mut [Complex<T>], sign: i32) {
    debug_assert!(x.len() >= 256);

    // Split into even and odd indices for Cooley-Tukey decomposition
    let mut even = [Complex::<T>::zero(); 128];
    let mut odd = [Complex::<T>::zero(); 128];

    for i in 0..128 {
        even[i] = x[2 * i];
        odd[i] = x[2 * i + 1];
    }

    // Apply size-128 DFT to each half
    notw_128(&mut even, sign);
    notw_128(&mut odd, sign);

    // Combine using twiddles: X[k] = E[k] + W256^k * O[k], X[k+128] = E[k] - W256^k * O[k]
    // W256^k = e^(-2πik/256) for forward, e^(+2πik/256) for inverse

    // Apply twiddles using recurrence (faster than sin_cos in loop)
    let angle_step = if sign < 0 {
        -<T as Float>::PI / T::from_usize(128)
    } else {
        <T as Float>::PI / T::from_usize(128)
    };
    let w_step = Complex::cis(angle_step);
    let mut w = Complex::new(T::one(), T::zero());

    for k in 0..128 {
        // Complex multiply: t = odd[k] * w
        let t = Complex::new(
            odd[k].re * w.re - odd[k].im * w.im,
            odd[k].im * w.re + odd[k].re * w.im,
        );

        x[k] = even[k] + t;
        x[k + 128] = even[k] - t;

        w = w * w_step;
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::api::fft;

    fn complex_approx_eq(a: Complex<f64>, b: Complex<f64>, eps: f64) -> bool {
        (a.re - b.re).abs() < eps && (a.im - b.im).abs() < eps
    }

    #[test]
    fn test_notw_2() {
        let mut x = [Complex::new(1.0_f64, 0.0), Complex::new(2.0, 0.0)];
        notw_2(&mut x);
        assert!((x[0].re - 3.0).abs() < 1e-10);
        assert!((x[1].re - (-1.0)).abs() < 1e-10);
    }

    #[test]
    fn test_notw_3() {
        let input: Vec<Complex<f64>> = (0..3).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_3(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_3_roundtrip() {
        let original: Vec<Complex<f64>> = (0..3)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_3(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_3(&mut recovered, 1);

        // Normalize (divide by N=3)
        for x in &mut recovered {
            *x = *x / 3.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_5() {
        let input: Vec<Complex<f64>> = (0..5).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_5(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_5_roundtrip() {
        let original: Vec<Complex<f64>> = (0..5)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_5(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_5(&mut recovered, 1);

        // Normalize (divide by N=5)
        for x in &mut recovered {
            *x = *x / 5.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_7() {
        let input: Vec<Complex<f64>> = (0..7).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_7(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_7_roundtrip() {
        let original: Vec<Complex<f64>> = (0..7)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_7(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_7(&mut recovered, 1);

        // Normalize (divide by N=7)
        for x in &mut recovered {
            *x = *x / 7.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_4() {
        let mut x = [
            Complex::new(1.0_f64, 0.0),
            Complex::new(2.0, 0.0),
            Complex::new(3.0, 0.0),
            Complex::new(4.0, 0.0),
        ];
        notw_4(&mut x, -1);

        // X[0] = sum = 10
        assert!((x[0].re - 10.0).abs() < 1e-10);
    }

    #[test]
    fn test_notw_8() {
        let input: Vec<Complex<f64>> = (0..8).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_8(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_8_roundtrip() {
        let original: Vec<Complex<f64>> = (0..8)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_8(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_8(&mut recovered, 1);

        // Normalize (divide by N=8)
        for x in &mut recovered {
            *x = *x / 8.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-10),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_8_dc_component() {
        // DC component should be sum of all inputs
        let input: Vec<Complex<f64>> = vec![
            Complex::new(1.0, 0.0),
            Complex::new(2.0, 0.0),
            Complex::new(3.0, 0.0),
            Complex::new(4.0, 0.0),
            Complex::new(5.0, 0.0),
            Complex::new(6.0, 0.0),
            Complex::new(7.0, 0.0),
            Complex::new(8.0, 0.0),
        ];

        let mut result = input;
        notw_8(&mut result, -1);

        // X[0] = sum = 1+2+3+4+5+6+7+8 = 36
        assert!(
            (result[0].re - 36.0).abs() < 1e-10,
            "DC component should be 36, got {}",
            result[0].re
        );
        assert!(
            result[0].im.abs() < 1e-10,
            "DC component should have no imaginary part"
        );
    }

    #[test]
    fn test_notw_16() {
        let input: Vec<Complex<f64>> = (0..16).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_16(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-9),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_16_roundtrip() {
        let original: Vec<Complex<f64>> = (0..16)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_16(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_16(&mut recovered, 1);

        // Normalize (divide by N=16)
        for x in &mut recovered {
            *x = *x / 16.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-9),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_16_dc_component() {
        // DC component should be sum of all inputs
        let input: Vec<Complex<f64>> = (1..=16).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        let mut result = input;
        notw_16(&mut result, -1);

        // X[0] = sum = 1+2+...+16 = 136
        assert!(
            (result[0].re - 136.0).abs() < 1e-9,
            "DC component should be 136, got {}",
            result[0].re
        );
        assert!(
            result[0].im.abs() < 1e-9,
            "DC component should have no imaginary part"
        );
    }

    #[test]
    fn test_notw_32() {
        let input: Vec<Complex<f64>> = (0..32).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_32(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-8),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_32_roundtrip() {
        let original: Vec<Complex<f64>> = (0..32)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_32(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_32(&mut recovered, 1);

        // Normalize (divide by N=32)
        for x in &mut recovered {
            *x = *x / 32.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-9),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_32_dc_component() {
        // DC component should be sum of all inputs
        let input: Vec<Complex<f64>> = (1..=32).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        let mut result = input;
        notw_32(&mut result, -1);

        // X[0] = sum = 1+2+...+32 = 32*33/2 = 528
        assert!(
            (result[0].re - 528.0).abs() < 1e-8,
            "DC component should be 528, got {}",
            result[0].re
        );
        assert!(
            result[0].im.abs() < 1e-8,
            "DC component should have no imaginary part"
        );
    }

    #[test]
    fn test_notw_64() {
        let input: Vec<Complex<f64>> = (0..64).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_64(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-7),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_64_roundtrip() {
        let original: Vec<Complex<f64>> = (0..64)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_64(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_64(&mut recovered, 1);

        // Normalize (divide by N=64)
        for x in &mut recovered {
            *x = *x / 64.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-9),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_64_dc_component() {
        // DC component should be sum of all inputs
        let input: Vec<Complex<f64>> = (1..=64).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        let mut result = input;
        notw_64(&mut result, -1);

        // X[0] = sum = 1+2+...+64 = 64*65/2 = 2080
        assert!(
            (result[0].re - 2080.0).abs() < 1e-7,
            "DC component should be 2080, got {}",
            result[0].re
        );
        assert!(
            result[0].im.abs() < 1e-7,
            "DC component should have no imaginary part"
        );
    }

    #[test]
    fn test_notw_128() {
        let input: Vec<Complex<f64>> = (0..128).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_128(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-6),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_128_roundtrip() {
        let original: Vec<Complex<f64>> = (0..128)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_128(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_128(&mut recovered, 1);

        // Normalize (divide by N=128)
        for x in &mut recovered {
            *x = *x / 128.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-8),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_128_dc_component() {
        // DC component should be sum of all inputs
        let input: Vec<Complex<f64>> = (1..=128).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        let mut result = input;
        notw_128(&mut result, -1);

        // X[0] = sum = 1+2+...+128 = 128*129/2 = 8256
        assert!(
            (result[0].re - 8256.0).abs() < 1e-5,
            "DC component should be 8256, got {}",
            result[0].re
        );
        assert!(
            result[0].im.abs() < 1e-5,
            "DC component should have no imaginary part"
        );
    }

    #[test]
    fn test_notw_256() {
        let input: Vec<Complex<f64>> = (0..256).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        // Reference result from full FFT
        let expected = fft(&input);

        // Test codelet
        let mut actual = input;
        notw_256(&mut actual, -1);

        // Compare
        for (i, (a, e)) in actual.iter().zip(expected.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-5),
                "Mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_256_roundtrip() {
        let original: Vec<Complex<f64>> = (0..256)
            .map(|i| Complex::new(f64::from(i).sin(), f64::from(i).cos()))
            .collect();

        // Forward transform
        let mut transformed = original.clone();
        notw_256(&mut transformed, -1);

        // Inverse transform
        let mut recovered = transformed.clone();
        notw_256(&mut recovered, 1);

        // Normalize (divide by N=256)
        for x in &mut recovered {
            *x = *x / 256.0;
        }

        // Compare
        for (i, (a, e)) in recovered.iter().zip(original.iter()).enumerate() {
            assert!(
                complex_approx_eq(*a, *e, 1e-8),
                "Roundtrip mismatch at index {i}: got {a:?}, expected {e:?}"
            );
        }
    }

    #[test]
    fn test_notw_256_dc_component() {
        // DC component should be sum of all inputs
        let input: Vec<Complex<f64>> = (1..=256).map(|i| Complex::new(f64::from(i), 0.0)).collect();

        let mut result = input;
        notw_256(&mut result, -1);

        // X[0] = sum = 1+2+...+256 = 256*257/2 = 32896
        assert!(
            (result[0].re - 32896.0).abs() < 1e-4,
            "DC component should be 32896, got {}",
            result[0].re
        );
        assert!(
            result[0].im.abs() < 1e-4,
            "DC component should have no imaginary part"
        );
    }
}