ferrolearn-decomp 0.2.2

Dimensionality reduction and decomposition for the ferrolearn ML framework
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
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
//! Covariance estimation.
//!
//! This module provides several covariance matrix estimators following
//! the scikit-learn API: empirical, shrunk, Ledoit-Wolf, OAS,
//! Minimum Covariance Determinant (FAST-MCD), and Elliptic Envelope
//! (outlier detection on top of MCD).
//!
//! All estimators follow the ferrolearn `Fit` trait pattern. The unfitted
//! struct holds hyperparameters; calling [`Fit::fit`] returns a fitted
//! struct that stores the learned covariance, location (mean), and
//! precision (inverse covariance).
//!
//! # Algorithms
//!
//! - [`EmpiricalCovariance`] — Maximum-likelihood covariance estimator.
//! - [`ShrunkCovariance`] — Covariance with fixed shrinkage toward a
//!   scaled identity.
//! - [`LedoitWolf`] — Optimal shrinkage minimising Frobenius risk
//!   (Ledoit & Wolf, 2004).
//! - [`OAS`] — Oracle Approximating Shrinkage (Chen, Wiesel, Eldar & Hero,
//!   2010).
//! - [`MinCovDet`] — Minimum Covariance Determinant via the FAST-MCD
//!   algorithm.
//! - [`EllipticEnvelope`] — Outlier detection using Mahalanobis distances
//!   from a robust (MCD) covariance estimate.
//!
//! # Examples
//!
//! ```
//! use ferrolearn_decomp::EmpiricalCovariance;
//! use ferrolearn_core::traits::Fit;
//! use ndarray::array;
//!
//! let est = EmpiricalCovariance::<f64>::new();
//! let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0]];
//! let fitted = est.fit(&x, &()).unwrap();
//! assert_eq!(fitted.covariance().dim(), (2, 2));
//! ```

use ferrolearn_core::error::FerroError;
use ferrolearn_core::traits::{Fit, Predict};
use ndarray::{Array1, Array2};
use num_traits::Float;
use rand::SeedableRng;
use rand_distr::{Distribution, Uniform};
use rand_xoshiro::Xoshiro256PlusPlus;

// ============================================================================
// Helpers
// ============================================================================

/// Compute the per-column mean of a matrix.
fn col_mean<F: Float>(x: &Array2<F>, n: usize) -> Array1<F> {
    let p = x.ncols();
    let n_f = F::from(n).unwrap();
    let mut mean = Array1::<F>::zeros(p);
    for j in 0..p {
        let s = x.column(j).iter().copied().fold(F::zero(), |a, b| a + b);
        mean[j] = s / n_f;
    }
    mean
}

/// Compute the empirical covariance matrix `(X-mean)^T (X-mean) / n`.
///
/// If `assume_centered` is true, uses X directly without subtracting the
/// mean. Divides by `n` (MLE estimator), not `n-1`.
fn empirical_cov<F: Float + Send + Sync + 'static>(
    x: &Array2<F>,
    mean: &Array1<F>,
    assume_centered: bool,
) -> Array2<F> {
    let (n, _p) = x.dim();
    let n_f = F::from(n).unwrap();

    if assume_centered {
        let xt = x.t();
        let mut cov = xt.dot(x);
        cov.mapv_inplace(|v| v / n_f);
        cov
    } else {
        let mut x_c = x.to_owned();
        for mut row in x_c.rows_mut() {
            for (v, &m) in row.iter_mut().zip(mean.iter()) {
                *v = *v - m;
            }
        }
        let xt = x_c.t();
        let mut cov = xt.dot(&x_c);
        cov.mapv_inplace(|v| v / n_f);
        cov
    }
}

/// Compute a lower-triangular Cholesky factor L such that A = L L^T.
///
/// Adds a small regularisation to the diagonal for numerical stability.
fn cholesky<F: Float>(a: &Array2<F>, d: usize) -> Result<Array2<F>, FerroError> {
    let reg = F::from(1e-8).unwrap_or_else(F::epsilon);
    let mut l = Array2::zeros((d, d));
    for i in 0..d {
        for j in 0..=i {
            let mut s = a[[i, j]];
            if i == j {
                s = s + reg;
            }
            for p in 0..j {
                s = s - l[[i, p]] * l[[j, p]];
            }
            if i == j {
                if s <= F::zero() {
                    return Err(FerroError::NumericalInstability {
                        message: format!("covariance not positive-definite at diagonal [{i},{i}]"),
                    });
                }
                l[[i, j]] = s.sqrt();
            } else {
                if l[[j, j]] == F::zero() {
                    return Err(FerroError::NumericalInstability {
                        message: "Cholesky: zero diagonal element".into(),
                    });
                }
                l[[i, j]] = s / l[[j, j]];
            }
        }
    }
    Ok(l)
}

/// Compute the inverse of a symmetric positive-definite matrix via Cholesky.
///
/// Given `A = L L^T`, computes `A^{-1} = L^{-T} L^{-1}`.
fn spd_inverse<F: Float + Send + Sync + 'static>(a: &Array2<F>) -> Result<Array2<F>, FerroError> {
    let d = a.nrows();
    let l = cholesky(a, d)?;

    // Invert L (lower-triangular).
    let mut l_inv = Array2::<F>::zeros((d, d));
    for i in 0..d {
        l_inv[[i, i]] = F::one() / l[[i, i]];
        for j in (0..i).rev() {
            let mut s = F::zero();
            for k in (j + 1)..=i {
                s = s + l[[i, k]] * l_inv[[k, j]];
            }
            l_inv[[i, j]] = -s / l[[j, j]];
        }
    }

    // A^{-1} = L^{-T} L^{-1}
    let mut inv = Array2::<F>::zeros((d, d));
    for i in 0..d {
        for j in 0..=i {
            let mut s = F::zero();
            for k in i.max(j)..d {
                s = s + l_inv[[k, i]] * l_inv[[k, j]];
            }
            inv[[i, j]] = s;
            inv[[j, i]] = s;
        }
    }
    Ok(inv)
}

/// Compute Mahalanobis distances for each row of `x` given location and precision.
///
/// `mahal_i = sqrt((x_i - loc)^T precision (x_i - loc))`
fn mahalanobis_distances<F: Float + Send + Sync + 'static>(
    x: &Array2<F>,
    location: &Array1<F>,
    precision: &Array2<F>,
) -> Array1<F> {
    let n = x.nrows();
    let p = x.ncols();
    let mut dists = Array1::<F>::zeros(n);
    for i in 0..n {
        let mut val = F::zero();
        for j in 0..p {
            let diff_j = x[[i, j]] - location[j];
            for k in 0..p {
                let diff_k = x[[i, k]] - location[k];
                val = val + diff_j * precision[[j, k]] * diff_k;
            }
        }
        dists[i] = val.abs().sqrt();
    }
    dists
}

/// Compute the trace of a square matrix.
fn trace<F: Float>(a: &Array2<F>) -> F {
    let n = a.nrows();
    let mut t = F::zero();
    for i in 0..n {
        t = t + a[[i, i]];
    }
    t
}

/// Compute trace(A^2) for a symmetric matrix (more efficiently via Frobenius norm squared).
fn trace_sq<F: Float>(a: &Array2<F>) -> F {
    let n = a.nrows();
    let mut s = F::zero();
    for i in 0..n {
        for j in 0..n {
            s = s + a[[i, j]] * a[[i, j]];
        }
    }
    s
}

/// Apply shrinkage: `(1-s)*cov + s*(trace(cov)/p)*I`.
fn shrink_covariance<F: Float + Send + Sync + 'static>(
    cov: &Array2<F>,
    shrinkage: F,
    p: usize,
) -> Array2<F> {
    let tr = trace(cov);
    let mu = tr / F::from(p).unwrap();
    let one_minus_s = F::one() - shrinkage;
    let mut result = cov.mapv(|v| one_minus_s * v);
    for i in 0..p {
        result[[i, i]] = result[[i, i]] + shrinkage * mu;
    }
    result
}

/// Log-determinant of a symmetric positive-definite matrix via Cholesky.
fn log_det_spd<F: Float + Send + Sync + 'static>(a: &Array2<F>) -> Result<F, FerroError> {
    let d = a.nrows();
    let l = cholesky(a, d)?;
    let mut log_det = F::zero();
    for i in 0..d {
        log_det = log_det + l[[i, i]].ln();
    }
    Ok(log_det + log_det) // 2 * sum(log(diag(L)))
}

/// Chi-squared quantile approximation using the Wilson-Hilferty transformation.
///
/// Computes the approximate `q`-quantile of `chi^2(k)`.
fn chi2_quantile_approx(k: f64, q: f64) -> f64 {
    // Wilson-Hilferty: chi^2_k(q) ~ k * (1 - 2/(9k) + z_q * sqrt(2/(9k)))^3
    // where z_q is the standard normal quantile.
    let z = normal_quantile_approx(q);
    let ratio = 2.0 / (9.0 * k);
    let base = 1.0 - ratio + z * ratio.sqrt();
    let result = k * base * base * base;
    if result < 0.0 { 0.0 } else { result }
}

/// Approximate standard normal quantile (Beasley-Springer-Moro algorithm).
fn normal_quantile_approx(p: f64) -> f64 {
    // Rational approximation for the standard normal quantile.
    // Uses Abramowitz and Stegun 26.2.23 for the central region.
    if p <= 0.0 {
        return f64::NEG_INFINITY;
    }
    if p >= 1.0 {
        return f64::INFINITY;
    }
    if (p - 0.5).abs() < f64::EPSILON {
        return 0.0;
    }

    let sign;
    let pp;
    if p < 0.5 {
        pp = p;
        sign = -1.0;
    } else {
        pp = 1.0 - p;
        sign = 1.0;
    }

    let t = (-2.0 * pp.ln()).sqrt();
    // Coefficients from Abramowitz and Stegun.
    let c0 = 2.515_517;
    let c1 = 0.802_853;
    let c2 = 0.010_328;
    let d1 = 1.432_788;
    let d2 = 0.189_269;
    let d3 = 0.001_308;

    let num = c0 + c1 * t + c2 * t * t;
    let den = 1.0 + d1 * t + d2 * t * t + d3 * t * t * t;
    sign * (t - num / den)
}

// ============================================================================
// Fitted covariance (shared return type)
// ============================================================================

/// A fitted covariance model holding the estimated covariance matrix,
/// location (mean), and precision (inverse covariance).
///
/// Created by calling [`Fit::fit`] on any covariance estimator.
#[derive(Debug, Clone)]
pub struct FittedCovariance<F> {
    /// Estimated covariance matrix, shape `(p, p)`.
    covariance_: Array2<F>,
    /// Location vector (mean), shape `(p,)`.
    location_: Array1<F>,
    /// Precision matrix (inverse of covariance), shape `(p, p)`.
    precision_: Array2<F>,
}

impl<F: Float + Send + Sync + 'static> FittedCovariance<F> {
    /// The estimated covariance matrix, shape `(p, p)`.
    #[must_use]
    pub fn covariance(&self) -> &Array2<F> {
        &self.covariance_
    }

    /// The location vector (mean), shape `(p,)`.
    #[must_use]
    pub fn location(&self) -> &Array1<F> {
        &self.location_
    }

    /// The precision matrix (inverse of the covariance), shape `(p, p)`.
    #[must_use]
    pub fn precision(&self) -> &Array2<F> {
        &self.precision_
    }

    /// Compute per-sample Mahalanobis distances.
    ///
    /// Returns an array of length `n` where each entry is
    /// `sqrt((x_i - location)^T precision (x_i - location))`.
    ///
    /// # Errors
    ///
    /// Returns [`FerroError::ShapeMismatch`] if the number of columns in
    /// `x` does not match the dimensionality of the fitted model.
    pub fn mahalanobis(&self, x: &Array2<F>) -> Result<Array1<F>, FerroError> {
        let p = self.location_.len();
        if x.ncols() != p {
            return Err(FerroError::ShapeMismatch {
                expected: vec![x.nrows(), p],
                actual: vec![x.nrows(), x.ncols()],
                context: "FittedCovariance::mahalanobis".into(),
            });
        }
        Ok(mahalanobis_distances(x, &self.location_, &self.precision_))
    }
}

// ============================================================================
// 1. EmpiricalCovariance
// ============================================================================

/// Maximum-likelihood covariance estimator.
///
/// Computes the sample covariance matrix `(X - mean)^T (X - mean) / n`.
/// If `assume_centered` is true, the mean is assumed to be zero and not
/// subtracted.
///
/// # Examples
///
/// ```
/// use ferrolearn_decomp::EmpiricalCovariance;
/// use ferrolearn_core::traits::Fit;
/// use ndarray::array;
///
/// let est = EmpiricalCovariance::<f64>::new();
/// let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]];
/// let fitted = est.fit(&x, &()).unwrap();
/// assert_eq!(fitted.covariance().dim(), (2, 2));
/// ```
#[derive(Debug, Clone)]
pub struct EmpiricalCovariance<F> {
    /// Whether to assume the data is already centred (mean = 0).
    assume_centered: bool,
    _marker: std::marker::PhantomData<F>,
}

impl<F: Float + Send + Sync + 'static> EmpiricalCovariance<F> {
    /// Create a new `EmpiricalCovariance` estimator with default settings.
    #[must_use]
    pub fn new() -> Self {
        Self {
            assume_centered: false,
            _marker: std::marker::PhantomData,
        }
    }

    /// Set whether to assume the data is already centred.
    #[must_use]
    pub fn assume_centered(mut self, value: bool) -> Self {
        self.assume_centered = value;
        self
    }
}

impl<F: Float + Send + Sync + 'static> Default for EmpiricalCovariance<F> {
    fn default() -> Self {
        Self::new()
    }
}

impl<F: Float + Send + Sync + 'static> Fit<Array2<F>, ()> for EmpiricalCovariance<F> {
    type Fitted = FittedCovariance<F>;
    type Error = FerroError;

    /// Fit the empirical covariance estimator.
    ///
    /// # Errors
    ///
    /// - [`FerroError::InsufficientSamples`] if fewer than 1 sample is provided.
    /// - [`FerroError::NumericalInstability`] if the covariance cannot be inverted.
    fn fit(&self, x: &Array2<F>, _y: &()) -> Result<FittedCovariance<F>, FerroError> {
        let (n, _p) = x.dim();
        if n < 1 {
            return Err(FerroError::InsufficientSamples {
                required: 1,
                actual: n,
                context: "EmpiricalCovariance::fit".into(),
            });
        }

        let location = if self.assume_centered {
            Array1::<F>::zeros(x.ncols())
        } else {
            col_mean(x, n)
        };

        let cov = empirical_cov(x, &location, self.assume_centered);
        let precision = spd_inverse(&cov)?;

        Ok(FittedCovariance {
            covariance_: cov,
            location_: location,
            precision_: precision,
        })
    }
}

// ============================================================================
// 2. ShrunkCovariance
// ============================================================================

/// Covariance estimator with fixed shrinkage toward a scaled identity.
///
/// The shrunk covariance is computed as:
///
/// ```text
/// cov_shrunk = (1 - s) * cov_emp + s * (trace(cov_emp) / p) * I
/// ```
///
/// where `s` is the shrinkage coefficient in `[0, 1]` and `p` is the
/// number of features.
///
/// # Examples
///
/// ```
/// use ferrolearn_decomp::ShrunkCovariance;
/// use ferrolearn_core::traits::Fit;
/// use ndarray::array;
///
/// let est = ShrunkCovariance::<f64>::new(0.1);
/// let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]];
/// let fitted = est.fit(&x, &()).unwrap();
/// assert_eq!(fitted.covariance().dim(), (2, 2));
/// ```
#[derive(Debug, Clone)]
pub struct ShrunkCovariance<F> {
    /// The shrinkage coefficient in `[0, 1]`.
    shrinkage: F,
    /// Whether to assume the data is already centred.
    assume_centered: bool,
    _marker: std::marker::PhantomData<F>,
}

impl<F: Float + Send + Sync + 'static> ShrunkCovariance<F> {
    /// Create a new `ShrunkCovariance` estimator with the given shrinkage.
    ///
    /// The shrinkage value must be in `[0, 1]`.
    #[must_use]
    pub fn new(shrinkage: F) -> Self {
        Self {
            shrinkage,
            assume_centered: false,
            _marker: std::marker::PhantomData,
        }
    }

    /// Set whether to assume the data is already centred.
    #[must_use]
    pub fn assume_centered(mut self, value: bool) -> Self {
        self.assume_centered = value;
        self
    }
}

impl<F: Float + Send + Sync + 'static> Fit<Array2<F>, ()> for ShrunkCovariance<F> {
    type Fitted = FittedCovariance<F>;
    type Error = FerroError;

    /// Fit the shrunk covariance estimator.
    ///
    /// # Errors
    ///
    /// - [`FerroError::InsufficientSamples`] if fewer than 1 sample.
    /// - [`FerroError::InvalidParameter`] if shrinkage is outside `[0, 1]`.
    /// - [`FerroError::NumericalInstability`] if the covariance cannot be inverted.
    fn fit(&self, x: &Array2<F>, _y: &()) -> Result<FittedCovariance<F>, FerroError> {
        let (n, p) = x.dim();
        if n < 1 {
            return Err(FerroError::InsufficientSamples {
                required: 1,
                actual: n,
                context: "ShrunkCovariance::fit".into(),
            });
        }
        if self.shrinkage < F::zero() || self.shrinkage > F::one() {
            return Err(FerroError::InvalidParameter {
                name: "shrinkage".into(),
                reason: "must be in [0, 1]".into(),
            });
        }

        let location = if self.assume_centered {
            Array1::<F>::zeros(p)
        } else {
            col_mean(x, n)
        };

        let cov_emp = empirical_cov(x, &location, self.assume_centered);
        let cov = shrink_covariance(&cov_emp, self.shrinkage, p);
        let precision = spd_inverse(&cov)?;

        Ok(FittedCovariance {
            covariance_: cov,
            location_: location,
            precision_: precision,
        })
    }
}

// ============================================================================
// 3. LedoitWolf
// ============================================================================

/// Ledoit-Wolf optimal shrinkage covariance estimator.
///
/// Automatically selects the shrinkage coefficient that minimises the
/// Frobenius risk (Ledoit & Wolf, 2004). The formula estimates the
/// optimal blend between the empirical covariance and a scaled identity
/// target.
///
/// # Examples
///
/// ```
/// use ferrolearn_decomp::LedoitWolf;
/// use ferrolearn_core::traits::Fit;
/// use ndarray::array;
///
/// let est = LedoitWolf::<f64>::new();
/// let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0]];
/// let fitted = est.fit(&x, &()).unwrap();
/// assert_eq!(fitted.covariance().dim(), (2, 2));
/// ```
#[derive(Debug, Clone)]
pub struct LedoitWolf<F> {
    /// Whether to assume the data is already centred.
    assume_centered: bool,
    _marker: std::marker::PhantomData<F>,
}

impl<F: Float + Send + Sync + 'static> LedoitWolf<F> {
    /// Create a new `LedoitWolf` estimator.
    #[must_use]
    pub fn new() -> Self {
        Self {
            assume_centered: false,
            _marker: std::marker::PhantomData,
        }
    }

    /// Set whether to assume the data is already centred.
    #[must_use]
    pub fn assume_centered(mut self, value: bool) -> Self {
        self.assume_centered = value;
        self
    }
}

impl<F: Float + Send + Sync + 'static> Default for LedoitWolf<F> {
    fn default() -> Self {
        Self::new()
    }
}

/// A fitted Ledoit-Wolf model, extending the base covariance with the
/// computed shrinkage coefficient.
#[derive(Debug, Clone)]
pub struct FittedLedoitWolf<F> {
    /// The base fitted covariance.
    inner: FittedCovariance<F>,
    /// The optimal shrinkage coefficient that was computed.
    shrinkage_: F,
}

impl<F: Float + Send + Sync + 'static> FittedLedoitWolf<F> {
    /// The estimated covariance matrix, shape `(p, p)`.
    #[must_use]
    pub fn covariance(&self) -> &Array2<F> {
        &self.inner.covariance_
    }

    /// The location vector (mean), shape `(p,)`.
    #[must_use]
    pub fn location(&self) -> &Array1<F> {
        &self.inner.location_
    }

    /// The precision matrix (inverse of the covariance), shape `(p, p)`.
    #[must_use]
    pub fn precision(&self) -> &Array2<F> {
        &self.inner.precision_
    }

    /// The optimal shrinkage coefficient that was computed.
    #[must_use]
    pub fn shrinkage(&self) -> F {
        self.shrinkage_
    }

    /// Compute per-sample Mahalanobis distances.
    ///
    /// # Errors
    ///
    /// Returns [`FerroError::ShapeMismatch`] if the number of columns in
    /// `x` does not match the dimensionality of the fitted model.
    pub fn mahalanobis(&self, x: &Array2<F>) -> Result<Array1<F>, FerroError> {
        self.inner.mahalanobis(x)
    }
}

impl<F: Float + Send + Sync + 'static> Fit<Array2<F>, ()> for LedoitWolf<F> {
    type Fitted = FittedLedoitWolf<F>;
    type Error = FerroError;

    /// Fit the Ledoit-Wolf covariance estimator.
    ///
    /// # Errors
    ///
    /// - [`FerroError::InsufficientSamples`] if fewer than 2 samples.
    /// - [`FerroError::NumericalInstability`] if the covariance cannot be inverted.
    fn fit(&self, x: &Array2<F>, _y: &()) -> Result<FittedLedoitWolf<F>, FerroError> {
        let (n, p) = x.dim();
        if n < 2 {
            return Err(FerroError::InsufficientSamples {
                required: 2,
                actual: n,
                context: "LedoitWolf::fit".into(),
            });
        }

        let location = if self.assume_centered {
            Array1::<F>::zeros(p)
        } else {
            col_mean(x, n)
        };

        // Centre the data.
        let mut x_c = x.to_owned();
        if !self.assume_centered {
            for mut row in x_c.rows_mut() {
                for (v, &m) in row.iter_mut().zip(location.iter()) {
                    *v = *v - m;
                }
            }
        }

        let n_f = F::from(n).unwrap();
        let p_f = F::from(p).unwrap();

        // S = X^T X / n  (empirical covariance, MLE)
        let xt = x_c.t();
        let mut s = xt.dot(&x_c);
        s.mapv_inplace(|v| v / n_f);

        // mu = trace(S) / p
        let mu = trace(&s) / p_f;

        // delta = sum((s_ij - mu*delta_ij)^2) / p^2
        // where delta_ij is Kronecker delta
        let mut delta_sum = F::zero();
        for i in 0..p {
            for j in 0..p {
                let target = if i == j { mu } else { F::zero() };
                let diff = s[[i, j]] - target;
                delta_sum = delta_sum + diff * diff;
            }
        }
        let delta = delta_sum / (p_f * p_f);

        // beta: estimate from sample fourth moments
        // beta = (1/n^2) sum_k sum_{i,j} ((x_k^T e_i)(x_k^T e_j) - s_ij)^2 / p^2
        // i.e., average over samples of || x_k x_k^T - S ||_F^2 / (n*p^2)
        let mut beta_sum = F::zero();
        for k in 0..n {
            // Compute || x_k x_k^T / 1 - S ||_F^2
            // = sum_{i,j} (x_ki * x_kj - s_ij)^2
            let row_k = x_c.row(k);
            let mut row_err = F::zero();
            for i in 0..p {
                for j in 0..p {
                    let outer = row_k[i] * row_k[j];
                    let diff = outer - s[[i, j]];
                    row_err = row_err + diff * diff;
                }
            }
            beta_sum = beta_sum + row_err;
        }
        let beta = beta_sum / (n_f * n_f * p_f * p_f);

        // Optimal shrinkage
        let shrinkage = if delta > F::zero() {
            let ratio = beta / delta;
            if ratio < F::zero() {
                F::zero()
            } else if ratio > F::one() {
                F::one()
            } else {
                ratio
            }
        } else {
            F::one()
        };

        let cov = shrink_covariance(&s, shrinkage, p);
        let precision = spd_inverse(&cov)?;

        Ok(FittedLedoitWolf {
            inner: FittedCovariance {
                covariance_: cov,
                location_: location,
                precision_: precision,
            },
            shrinkage_: shrinkage,
        })
    }
}

// ============================================================================
// 4. OAS (Oracle Approximating Shrinkage)
// ============================================================================

/// Oracle Approximating Shrinkage covariance estimator.
///
/// Computes the optimal shrinkage coefficient using the OAS formula
/// (Chen, Wiesel, Eldar & Hero, 2010), which provides a good
/// approximation to the oracle shrinkage under Gaussian assumptions.
///
/// # Examples
///
/// ```
/// use ferrolearn_decomp::OAS;
/// use ferrolearn_core::traits::Fit;
/// use ndarray::array;
///
/// let est = OAS::<f64>::new();
/// let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0]];
/// let fitted = est.fit(&x, &()).unwrap();
/// assert_eq!(fitted.covariance().dim(), (2, 2));
/// ```
#[derive(Debug, Clone)]
pub struct OAS<F> {
    /// Whether to assume the data is already centred.
    assume_centered: bool,
    _marker: std::marker::PhantomData<F>,
}

impl<F: Float + Send + Sync + 'static> OAS<F> {
    /// Create a new `OAS` estimator.
    #[must_use]
    pub fn new() -> Self {
        Self {
            assume_centered: false,
            _marker: std::marker::PhantomData,
        }
    }

    /// Set whether to assume the data is already centred.
    #[must_use]
    pub fn assume_centered(mut self, value: bool) -> Self {
        self.assume_centered = value;
        self
    }
}

impl<F: Float + Send + Sync + 'static> Default for OAS<F> {
    fn default() -> Self {
        Self::new()
    }
}

/// A fitted OAS model, extending the base covariance with the computed
/// shrinkage coefficient.
#[derive(Debug, Clone)]
pub struct FittedOAS<F> {
    /// The base fitted covariance.
    inner: FittedCovariance<F>,
    /// The optimal shrinkage coefficient that was computed.
    shrinkage_: F,
}

impl<F: Float + Send + Sync + 'static> FittedOAS<F> {
    /// The estimated covariance matrix, shape `(p, p)`.
    #[must_use]
    pub fn covariance(&self) -> &Array2<F> {
        &self.inner.covariance_
    }

    /// The location vector (mean), shape `(p,)`.
    #[must_use]
    pub fn location(&self) -> &Array1<F> {
        &self.inner.location_
    }

    /// The precision matrix (inverse of the covariance), shape `(p, p)`.
    #[must_use]
    pub fn precision(&self) -> &Array2<F> {
        &self.inner.precision_
    }

    /// The optimal shrinkage coefficient that was computed.
    #[must_use]
    pub fn shrinkage(&self) -> F {
        self.shrinkage_
    }

    /// Compute per-sample Mahalanobis distances.
    ///
    /// # Errors
    ///
    /// Returns [`FerroError::ShapeMismatch`] if the number of columns in
    /// `x` does not match the dimensionality of the fitted model.
    pub fn mahalanobis(&self, x: &Array2<F>) -> Result<Array1<F>, FerroError> {
        self.inner.mahalanobis(x)
    }
}

impl<F: Float + Send + Sync + 'static> Fit<Array2<F>, ()> for OAS<F> {
    type Fitted = FittedOAS<F>;
    type Error = FerroError;

    /// Fit the OAS covariance estimator.
    ///
    /// # Errors
    ///
    /// - [`FerroError::InsufficientSamples`] if fewer than 2 samples.
    /// - [`FerroError::NumericalInstability`] if the covariance cannot be inverted.
    fn fit(&self, x: &Array2<F>, _y: &()) -> Result<FittedOAS<F>, FerroError> {
        let (n, p) = x.dim();
        if n < 2 {
            return Err(FerroError::InsufficientSamples {
                required: 2,
                actual: n,
                context: "OAS::fit".into(),
            });
        }

        let location = if self.assume_centered {
            Array1::<F>::zeros(p)
        } else {
            col_mean(x, n)
        };

        let s = empirical_cov(x, &location, self.assume_centered);

        let n_f = F::from(n).unwrap();
        let p_f = F::from(p).unwrap();
        let two = F::from(2.0).unwrap();

        let tr_s = trace(&s);
        let tr_s2 = trace_sq(&s);

        // OAS formula:
        // rho_num = (1 - 2/p) * trace(S^2) + trace(S)^2
        // rho_den = (n + 1 - 2/p) * (trace(S^2) - trace(S)^2 / p)
        let rho_num = (F::one() - two / p_f) * tr_s2 + tr_s * tr_s;
        let rho_den = (n_f + F::one() - two / p_f) * (tr_s2 - tr_s * tr_s / p_f);

        let shrinkage = if rho_den.abs() < F::from(1e-15).unwrap_or_else(F::epsilon) {
            F::one()
        } else {
            let ratio = rho_num / rho_den;
            if ratio < F::zero() {
                F::zero()
            } else if ratio > F::one() {
                F::one()
            } else {
                ratio
            }
        };

        let cov = shrink_covariance(&s, shrinkage, p);
        let precision = spd_inverse(&cov)?;

        Ok(FittedOAS {
            inner: FittedCovariance {
                covariance_: cov,
                location_: location,
                precision_: precision,
            },
            shrinkage_: shrinkage,
        })
    }
}

// ============================================================================
// 5. MinCovDet
// ============================================================================

/// Minimum Covariance Determinant (FAST-MCD) estimator.
///
/// Robust covariance estimation that is resilient to outliers. The
/// algorithm draws random subsets of `h` samples, applies C-steps
/// (select the `h` samples with smallest Mahalanobis distances,
/// recompute covariance), and keeps the subset with the lowest
/// determinant.
///
/// # Examples
///
/// ```
/// use ferrolearn_decomp::MinCovDet;
/// use ferrolearn_core::traits::Fit;
/// use ndarray::array;
///
/// let est = MinCovDet::<f64>::new();
/// let x = array![
///     [1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0],
///     [2.0, 3.0], [4.0, 5.0], [6.0, 7.0],
/// ];
/// let fitted = est.fit(&x, &()).unwrap();
/// assert_eq!(fitted.covariance().dim(), (2, 2));
/// ```
#[derive(Debug, Clone)]
pub struct MinCovDet<F> {
    /// Fraction of samples to use for the support set. If `None`,
    /// defaults to `(n + p + 1) / 2 / n`.
    support_fraction: Option<f64>,
    /// Optional random seed for reproducibility.
    random_state: Option<u64>,
    _marker: std::marker::PhantomData<F>,
}

impl<F: Float + Send + Sync + 'static> MinCovDet<F> {
    /// Create a new `MinCovDet` estimator with default settings.
    #[must_use]
    pub fn new() -> Self {
        Self {
            support_fraction: None,
            random_state: None,
            _marker: std::marker::PhantomData,
        }
    }

    /// Set the support fraction (must be in `(0.5, 1]`).
    #[must_use]
    pub fn support_fraction(mut self, frac: f64) -> Self {
        self.support_fraction = Some(frac);
        self
    }

    /// Set the random seed for reproducibility.
    #[must_use]
    pub fn random_state(mut self, seed: u64) -> Self {
        self.random_state = Some(seed);
        self
    }
}

impl<F: Float + Send + Sync + 'static> Default for MinCovDet<F> {
    fn default() -> Self {
        Self::new()
    }
}

/// A fitted MinCovDet model.
#[derive(Debug, Clone)]
pub struct FittedMinCovDet<F> {
    /// The base fitted covariance.
    inner: FittedCovariance<F>,
    /// Boolean mask: `true` for support samples used in the final estimate.
    support_: Vec<bool>,
}

impl<F: Float + Send + Sync + 'static> FittedMinCovDet<F> {
    /// The estimated (robust) covariance matrix, shape `(p, p)`.
    #[must_use]
    pub fn covariance(&self) -> &Array2<F> {
        &self.inner.covariance_
    }

    /// The location vector (robust mean), shape `(p,)`.
    #[must_use]
    pub fn location(&self) -> &Array1<F> {
        &self.inner.location_
    }

    /// The precision matrix (inverse of the covariance), shape `(p, p)`.
    #[must_use]
    pub fn precision(&self) -> &Array2<F> {
        &self.inner.precision_
    }

    /// Boolean support mask. `true` for samples that were in the final
    /// support set (inliers).
    #[must_use]
    pub fn support(&self) -> &[bool] {
        &self.support_
    }

    /// Compute per-sample Mahalanobis distances.
    ///
    /// # Errors
    ///
    /// Returns [`FerroError::ShapeMismatch`] if the number of columns in
    /// `x` does not match the dimensionality of the fitted model.
    pub fn mahalanobis(&self, x: &Array2<F>) -> Result<Array1<F>, FerroError> {
        self.inner.mahalanobis(x)
    }
}

impl<F: Float + Send + Sync + 'static> Fit<Array2<F>, ()> for MinCovDet<F> {
    type Fitted = FittedMinCovDet<F>;
    type Error = FerroError;

    /// Fit the Minimum Covariance Determinant estimator.
    ///
    /// # Errors
    ///
    /// - [`FerroError::InsufficientSamples`] if fewer than `p + 1` samples.
    /// - [`FerroError::InvalidParameter`] if `support_fraction` is invalid.
    /// - [`FerroError::NumericalInstability`] if the covariance cannot be inverted.
    fn fit(&self, x: &Array2<F>, _y: &()) -> Result<FittedMinCovDet<F>, FerroError> {
        let (n, p) = x.dim();

        if n < p + 1 {
            return Err(FerroError::InsufficientSamples {
                required: p + 1,
                actual: n,
                context: "MinCovDet::fit requires n >= p+1".into(),
            });
        }

        // Compute h (support size).
        let h = if let Some(frac) = self.support_fraction {
            if frac <= 0.5 || frac > 1.0 {
                return Err(FerroError::InvalidParameter {
                    name: "support_fraction".into(),
                    reason: "must be in (0.5, 1.0]".into(),
                });
            }
            let h_raw = (frac * n as f64).ceil() as usize;
            h_raw.max(p + 1).min(n)
        } else {
            // Default: (n + p + 1) / 2
            (n + p + 1).div_ceil(2).max(p + 1).min(n)
        };

        let mut rng = if let Some(seed) = self.random_state {
            Xoshiro256PlusPlus::seed_from_u64(seed)
        } else {
            Xoshiro256PlusPlus::seed_from_u64(0)
        };

        let n_trials = 10usize.min(n);
        let c_steps = 30;

        let mut best_log_det = F::from(f64::INFINITY).unwrap();
        let mut best_location = col_mean(x, n);
        let mut best_cov = empirical_cov(x, &best_location, false);
        let mut best_support = vec![true; n];

        let index_dist = Uniform::new(0usize, n).unwrap();

        for _trial in 0..n_trials {
            // Draw a random initial subset of size p+1.
            let mut subset: Vec<usize> = Vec::with_capacity(p + 1);
            while subset.len() < p + 1 {
                let idx = index_dist.sample(&mut rng);
                if !subset.contains(&idx) {
                    subset.push(idx);
                }
            }

            // C-steps.
            for _step in 0..c_steps {
                // Compute mean and covariance of subset.
                let sub_n = subset.len();
                let sub_n_f = F::from(sub_n).unwrap();
                let mut loc = Array1::<F>::zeros(p);
                for &idx in &subset {
                    for j in 0..p {
                        loc[j] = loc[j] + x[[idx, j]];
                    }
                }
                loc.mapv_inplace(|v| v / sub_n_f);

                let mut cov = Array2::<F>::zeros((p, p));
                for &idx in &subset {
                    for i in 0..p {
                        let di = x[[idx, i]] - loc[i];
                        for j in 0..p {
                            let dj = x[[idx, j]] - loc[j];
                            cov[[i, j]] = cov[[i, j]] + di * dj;
                        }
                    }
                }
                cov.mapv_inplace(|v| v / sub_n_f);

                // Add small regularisation for numerical stability.
                let reg = F::from(1e-10).unwrap_or_else(F::epsilon);
                for i in 0..p {
                    cov[[i, i]] = cov[[i, i]] + reg;
                }

                // Compute precision for Mahalanobis distances.
                let prec = match spd_inverse(&cov) {
                    Ok(pr) => pr,
                    Err(_) => break,
                };

                // Compute distances for all samples.
                let dists = mahalanobis_distances(x, &loc, &prec);

                // Sort by distance and select the h closest.
                let mut indices_dists: Vec<(usize, F)> = (0..n).map(|i| (i, dists[i])).collect();
                indices_dists
                    .sort_by(|a, b| a.1.partial_cmp(&b.1).unwrap_or(std::cmp::Ordering::Equal));

                let new_subset: Vec<usize> =
                    indices_dists.iter().take(h).map(|&(idx, _)| idx).collect();

                if new_subset == subset {
                    break; // converged
                }
                subset = new_subset;
            }

            // Evaluate final subset: compute covariance and log-determinant.
            let sub_n = subset.len();
            let sub_n_f = F::from(sub_n).unwrap();
            let mut loc = Array1::<F>::zeros(p);
            for &idx in &subset {
                for j in 0..p {
                    loc[j] = loc[j] + x[[idx, j]];
                }
            }
            loc.mapv_inplace(|v| v / sub_n_f);

            let mut cov = Array2::<F>::zeros((p, p));
            for &idx in &subset {
                for i in 0..p {
                    let di = x[[idx, i]] - loc[i];
                    for j in 0..p {
                        let dj = x[[idx, j]] - loc[j];
                        cov[[i, j]] = cov[[i, j]] + di * dj;
                    }
                }
            }
            cov.mapv_inplace(|v| v / sub_n_f);

            let reg = F::from(1e-10).unwrap_or_else(F::epsilon);
            for i in 0..p {
                cov[[i, i]] = cov[[i, i]] + reg;
            }

            if let Ok(ld) = log_det_spd(&cov) {
                if ld < best_log_det {
                    best_log_det = ld;
                    best_location = loc;
                    best_cov = cov;
                    best_support = vec![false; n];
                    for &idx in &subset {
                        best_support[idx] = true;
                    }
                }
            }
        }

        let precision = spd_inverse(&best_cov)?;

        Ok(FittedMinCovDet {
            inner: FittedCovariance {
                covariance_: best_cov,
                location_: best_location,
                precision_: precision,
            },
            support_: best_support,
        })
    }
}

// ============================================================================
// 6. EllipticEnvelope
// ============================================================================

/// Outlier detection using an elliptic envelope fitted via Minimum
/// Covariance Determinant.
///
/// Fits a robust covariance using [`MinCovDet`] and classifies samples
/// as inliers (+1) or outliers (-1) based on whether their Mahalanobis
/// distance exceeds a chi-squared threshold at the `(1 - contamination)`
/// quantile.
///
/// # Examples
///
/// ```
/// use ferrolearn_decomp::EllipticEnvelope;
/// use ferrolearn_core::traits::{Fit, Predict};
/// use ndarray::array;
///
/// let est = EllipticEnvelope::<f64>::new();
/// let x = array![
///     [1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0],
///     [2.0, 3.0], [4.0, 5.0], [6.0, 7.0],
/// ];
/// let fitted = est.fit(&x, &()).unwrap();
/// let labels = fitted.predict(&x).unwrap();
/// assert_eq!(labels.len(), 7);
/// ```
#[derive(Debug, Clone)]
pub struct EllipticEnvelope<F> {
    /// Fraction of samples to use for the MCD support set.
    support_fraction: Option<f64>,
    /// The proportion of outliers expected in the data. Controls the
    /// chi-squared threshold (default 0.1).
    contamination: f64,
    /// Optional random seed for reproducibility.
    random_state: Option<u64>,
    _marker: std::marker::PhantomData<F>,
}

impl<F: Float + Send + Sync + 'static> EllipticEnvelope<F> {
    /// Create a new `EllipticEnvelope` with default contamination of 0.1.
    #[must_use]
    pub fn new() -> Self {
        Self {
            support_fraction: None,
            contamination: 0.1,
            random_state: None,
            _marker: std::marker::PhantomData,
        }
    }

    /// Set the contamination fraction (must be in `(0, 0.5)`).
    #[must_use]
    pub fn contamination(mut self, c: f64) -> Self {
        self.contamination = c;
        self
    }

    /// Set the support fraction for the underlying MCD estimator.
    #[must_use]
    pub fn support_fraction(mut self, frac: f64) -> Self {
        self.support_fraction = Some(frac);
        self
    }

    /// Set the random seed for reproducibility.
    #[must_use]
    pub fn random_state(mut self, seed: u64) -> Self {
        self.random_state = Some(seed);
        self
    }
}

impl<F: Float + Send + Sync + 'static> Default for EllipticEnvelope<F> {
    fn default() -> Self {
        Self::new()
    }
}

/// A fitted Elliptic Envelope model.
#[derive(Debug, Clone)]
pub struct FittedEllipticEnvelope<F> {
    /// The underlying fitted MCD model.
    mcd: FittedMinCovDet<F>,
    /// The squared Mahalanobis distance threshold: samples with
    /// `dist^2 > threshold` are outliers.
    threshold_: F,
}

impl<F: Float + Send + Sync + 'static> FittedEllipticEnvelope<F> {
    /// The estimated (robust) covariance matrix.
    #[must_use]
    pub fn covariance(&self) -> &Array2<F> {
        self.mcd.covariance()
    }

    /// The location vector (robust mean).
    #[must_use]
    pub fn location(&self) -> &Array1<F> {
        self.mcd.location()
    }

    /// The precision matrix (inverse of the covariance).
    #[must_use]
    pub fn precision(&self) -> &Array2<F> {
        self.mcd.precision()
    }

    /// The squared Mahalanobis distance threshold for outlier detection.
    #[must_use]
    pub fn threshold(&self) -> F {
        self.threshold_
    }

    /// Compute per-sample Mahalanobis distances.
    ///
    /// # Errors
    ///
    /// Returns [`FerroError::ShapeMismatch`] if `x` has wrong number of columns.
    pub fn mahalanobis(&self, x: &Array2<F>) -> Result<Array1<F>, FerroError> {
        self.mcd.mahalanobis(x)
    }

    /// Compute the decision function: negative Mahalanobis distance
    /// shifted by the threshold.
    ///
    /// Positive values indicate inliers, negative values indicate outliers.
    ///
    /// # Errors
    ///
    /// Returns [`FerroError::ShapeMismatch`] if `x` has wrong number of columns.
    pub fn decision_function(&self, x: &Array2<F>) -> Result<Array1<F>, FerroError> {
        let dists = self.mcd.mahalanobis(x)?;
        // decision = threshold - dist^2 (positive = inlier)
        Ok(dists.mapv(|d| self.threshold_ - d * d))
    }
}

impl<F: Float + Send + Sync + 'static> Fit<Array2<F>, ()> for EllipticEnvelope<F> {
    type Fitted = FittedEllipticEnvelope<F>;
    type Error = FerroError;

    /// Fit the Elliptic Envelope.
    ///
    /// # Errors
    ///
    /// - [`FerroError::InvalidParameter`] if `contamination` is outside `(0, 0.5)`.
    /// - Propagates errors from [`MinCovDet::fit`].
    fn fit(&self, x: &Array2<F>, _y: &()) -> Result<FittedEllipticEnvelope<F>, FerroError> {
        if self.contamination <= 0.0 || self.contamination >= 0.5 {
            return Err(FerroError::InvalidParameter {
                name: "contamination".into(),
                reason: "must be in (0, 0.5)".into(),
            });
        }

        let p = x.ncols();

        let mut mcd = MinCovDet::<F>::new();
        if let Some(frac) = self.support_fraction {
            mcd = mcd.support_fraction(frac);
        }
        if let Some(seed) = self.random_state {
            mcd = mcd.random_state(seed);
        }
        let fitted_mcd = mcd.fit(x, &())?;

        // Threshold: chi2_quantile(p, 1 - contamination)
        // The Mahalanobis distance squared follows chi2(p) under Gaussian.
        let quantile = 1.0 - self.contamination;
        let threshold = chi2_quantile_approx(p as f64, quantile);
        let threshold_f = F::from(threshold).unwrap();

        Ok(FittedEllipticEnvelope {
            mcd: fitted_mcd,
            threshold_: threshold_f,
        })
    }
}

impl<F: Float + Send + Sync + 'static> Predict<Array2<F>> for FittedEllipticEnvelope<F> {
    type Output = Array1<i32>;
    type Error = FerroError;

    /// Predict outlier labels: +1 for inliers, -1 for outliers.
    ///
    /// A sample is an outlier if its squared Mahalanobis distance exceeds
    /// the chi-squared threshold.
    ///
    /// # Errors
    ///
    /// Returns [`FerroError::ShapeMismatch`] if `x` has wrong number of columns.
    fn predict(&self, x: &Array2<F>) -> Result<Array1<i32>, FerroError> {
        let dists = self.mcd.mahalanobis(x)?;
        Ok(dists.mapv(|d| if d * d > self.threshold_ { -1 } else { 1 }))
    }
}

// ============================================================================
// Tests
// ============================================================================

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

    // ---- EmpiricalCovariance ----

    #[test]
    fn test_empirical_covariance_basic() {
        let est = EmpiricalCovariance::<f64>::new();
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0],];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
        assert_eq!(fitted.location().len(), 2);
        assert_eq!(fitted.precision().dim(), (2, 2));
    }

    #[test]
    fn test_empirical_covariance_values() {
        // 2 features, 4 samples: known result.
        // X = [[0, 0], [2, 0], [0, 2], [2, 2]]
        // mean = [1, 1]
        // X - mean = [[-1,-1], [1,-1], [-1,1], [1,1]]
        // cov = (X-mu)^T(X-mu)/n = [[1,0],[0,1]]
        let est = EmpiricalCovariance::<f64>::new();
        let x = array![[0.0, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0]];
        let fitted = est.fit(&x, &()).unwrap();
        assert_abs_diff_eq!(fitted.covariance()[[0, 0]], 1.0, epsilon = 1e-10);
        assert_abs_diff_eq!(fitted.covariance()[[1, 1]], 1.0, epsilon = 1e-10);
        assert_abs_diff_eq!(fitted.covariance()[[0, 1]], 0.0, epsilon = 1e-10);
        assert_abs_diff_eq!(fitted.location()[0], 1.0, epsilon = 1e-10);
        assert_abs_diff_eq!(fitted.location()[1], 1.0, epsilon = 1e-10);
    }

    #[test]
    fn test_empirical_covariance_assume_centered() {
        let est = EmpiricalCovariance::<f64>::new().assume_centered(true);
        let x = array![[1.0, 0.0], [-1.0, 0.0]];
        let fitted = est.fit(&x, &()).unwrap();
        // Mean should be zero.
        assert_abs_diff_eq!(fitted.location()[0], 0.0, epsilon = 1e-10);
        assert_abs_diff_eq!(fitted.location()[1], 0.0, epsilon = 1e-10);
        // Cov = X^T X / n = [[1, 0], [0, 0]]
        assert_abs_diff_eq!(fitted.covariance()[[0, 0]], 1.0, epsilon = 1e-10);
    }

    #[test]
    fn test_empirical_covariance_mahalanobis() {
        let est = EmpiricalCovariance::<f64>::new();
        let x = array![[0.0, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0]];
        let fitted = est.fit(&x, &()).unwrap();
        let dists = fitted.mahalanobis(&x).unwrap();
        assert_eq!(dists.len(), 4);
        // All points are equidistant from the mean in this symmetric case.
        for i in 0..4 {
            assert!(dists[i] > 0.0, "distance should be positive");
        }
        // Symmetry: all distances should be equal.
        assert_abs_diff_eq!(dists[0], dists[1], epsilon = 1e-8);
        assert_abs_diff_eq!(dists[0], dists[2], epsilon = 1e-8);
        assert_abs_diff_eq!(dists[0], dists[3], epsilon = 1e-8);
    }

    #[test]
    fn test_empirical_covariance_shape_mismatch() {
        let est = EmpiricalCovariance::<f64>::new();
        let x = array![[1.0, 2.0], [3.0, 4.0]];
        let fitted = est.fit(&x, &()).unwrap();
        let bad = array![[1.0, 2.0, 3.0]];
        assert!(fitted.mahalanobis(&bad).is_err());
    }

    #[test]
    fn test_empirical_covariance_precision_is_inverse() {
        let est = EmpiricalCovariance::<f64>::new();
        let x = array![[0.0, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0]];
        let fitted = est.fit(&x, &()).unwrap();
        // cov * precision ~ I
        let prod = fitted.covariance().dot(fitted.precision());
        let p = fitted.covariance().nrows();
        for i in 0..p {
            for j in 0..p {
                let expected = if i == j { 1.0 } else { 0.0 };
                assert_abs_diff_eq!(prod[[i, j]], expected, epsilon = 1e-6);
            }
        }
    }

    #[test]
    fn test_empirical_covariance_symmetric() {
        let est = EmpiricalCovariance::<f64>::new();
        let x = array![
            [1.0, 2.0, 3.0],
            [4.0, 5.0, 6.0],
            [7.0, 8.0, 10.0],
            [2.0, 3.0, 5.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let cov = fitted.covariance();
        for i in 0..cov.nrows() {
            for j in 0..cov.ncols() {
                assert_abs_diff_eq!(cov[[i, j]], cov[[j, i]], epsilon = 1e-12);
            }
        }
    }

    #[test]
    fn test_empirical_covariance_default() {
        let est = EmpiricalCovariance::<f64>::default();
        let x = array![[1.0, 2.0], [3.0, 4.0]];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    // ---- ShrunkCovariance ----

    #[test]
    fn test_shrunk_covariance_zero_shrinkage() {
        // Zero shrinkage should equal empirical covariance.
        let emp = EmpiricalCovariance::<f64>::new();
        let shrunk = ShrunkCovariance::<f64>::new(0.0);
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0]];
        let f_emp = emp.fit(&x, &()).unwrap();
        let f_shrunk = shrunk.fit(&x, &()).unwrap();
        for i in 0..2 {
            for j in 0..2 {
                assert_abs_diff_eq!(
                    f_emp.covariance()[[i, j]],
                    f_shrunk.covariance()[[i, j]],
                    epsilon = 1e-10
                );
            }
        }
    }

    #[test]
    fn test_shrunk_covariance_full_shrinkage() {
        // Full shrinkage should give a scaled identity.
        let shrunk = ShrunkCovariance::<f64>::new(1.0);
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0]];
        let fitted = shrunk.fit(&x, &()).unwrap();
        let cov = fitted.covariance();
        // Off-diagonal should be zero.
        assert_abs_diff_eq!(cov[[0, 1]], 0.0, epsilon = 1e-10);
        assert_abs_diff_eq!(cov[[1, 0]], 0.0, epsilon = 1e-10);
        // Diagonal should be equal (scaled identity).
        assert_abs_diff_eq!(cov[[0, 0]], cov[[1, 1]], epsilon = 1e-10);
    }

    #[test]
    fn test_shrunk_covariance_invalid_shrinkage() {
        let shrunk = ShrunkCovariance::<f64>::new(-0.1);
        let x = array![[1.0, 2.0], [3.0, 4.0]];
        assert!(shrunk.fit(&x, &()).is_err());

        let shrunk2 = ShrunkCovariance::<f64>::new(1.5);
        assert!(shrunk2.fit(&x, &()).is_err());
    }

    #[test]
    fn test_shrunk_covariance_intermediate() {
        let shrunk = ShrunkCovariance::<f64>::new(0.5);
        let x = array![[0.0, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0]];
        let fitted = shrunk.fit(&x, &()).unwrap();
        let cov = fitted.covariance();
        // (1-0.5)*1.0 + 0.5*1.0 = 1.0 for diagonal
        assert_abs_diff_eq!(cov[[0, 0]], 1.0, epsilon = 1e-10);
        // Off-diagonal: (1-0.5)*0 = 0
        assert_abs_diff_eq!(cov[[0, 1]], 0.0, epsilon = 1e-10);
    }

    // ---- LedoitWolf ----

    #[test]
    fn test_ledoit_wolf_basic() {
        let est = LedoitWolf::<f64>::new();
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0], [2.0, 3.0],];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
        assert!(fitted.shrinkage() >= 0.0);
        assert!(fitted.shrinkage() <= 1.0);
    }

    #[test]
    fn test_ledoit_wolf_shrinkage_in_range() {
        let est = LedoitWolf::<f64>::new();
        let x = array![
            [1.0, 0.0, 0.5],
            [0.0, 1.0, 0.3],
            [0.5, 0.3, 1.0],
            [1.2, 0.8, 0.4],
            [0.3, 1.1, 0.9],
            [0.7, 0.2, 1.3],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        assert!(
            fitted.shrinkage() >= 0.0 && fitted.shrinkage() <= 1.0,
            "shrinkage = {} out of range",
            fitted.shrinkage()
        );
    }

    #[test]
    fn test_ledoit_wolf_symmetric() {
        let est = LedoitWolf::<f64>::new();
        let x = array![
            [1.0, 2.0, 3.0],
            [4.0, 5.0, 6.0],
            [7.0, 8.0, 10.0],
            [2.0, 3.0, 5.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let cov = fitted.covariance();
        for i in 0..cov.nrows() {
            for j in 0..cov.ncols() {
                assert_abs_diff_eq!(cov[[i, j]], cov[[j, i]], epsilon = 1e-12);
            }
        }
    }

    #[test]
    fn test_ledoit_wolf_mahalanobis() {
        let est = LedoitWolf::<f64>::new();
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0],];
        let fitted = est.fit(&x, &()).unwrap();
        let dists = fitted.mahalanobis(&x).unwrap();
        assert_eq!(dists.len(), 4);
        for &d in &dists {
            assert!(d >= 0.0, "Mahalanobis distance should be non-negative");
        }
    }

    #[test]
    fn test_ledoit_wolf_insufficient_samples() {
        let est = LedoitWolf::<f64>::new();
        let x = array![[1.0, 2.0]];
        assert!(est.fit(&x, &()).is_err());
    }

    #[test]
    fn test_ledoit_wolf_default() {
        let est = LedoitWolf::<f64>::default();
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    // ---- OAS ----

    #[test]
    fn test_oas_basic() {
        let est = OAS::<f64>::new();
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0], [2.0, 3.0],];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
        assert!(fitted.shrinkage() >= 0.0);
        assert!(fitted.shrinkage() <= 1.0);
    }

    #[test]
    fn test_oas_shrinkage_in_range() {
        let est = OAS::<f64>::new();
        let x = array![
            [1.0, 0.0, 0.5],
            [0.0, 1.0, 0.3],
            [0.5, 0.3, 1.0],
            [1.2, 0.8, 0.4],
            [0.3, 1.1, 0.9],
            [0.7, 0.2, 1.3],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        assert!(
            fitted.shrinkage() >= 0.0 && fitted.shrinkage() <= 1.0,
            "shrinkage = {} out of range",
            fitted.shrinkage()
        );
    }

    #[test]
    fn test_oas_symmetric() {
        let est = OAS::<f64>::new();
        let x = array![
            [1.0, 2.0, 3.0],
            [4.0, 5.0, 6.0],
            [7.0, 8.0, 10.0],
            [2.0, 3.0, 5.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let cov = fitted.covariance();
        for i in 0..cov.nrows() {
            for j in 0..cov.ncols() {
                assert_abs_diff_eq!(cov[[i, j]], cov[[j, i]], epsilon = 1e-12);
            }
        }
    }

    #[test]
    fn test_oas_mahalanobis() {
        let est = OAS::<f64>::new();
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0],];
        let fitted = est.fit(&x, &()).unwrap();
        let dists = fitted.mahalanobis(&x).unwrap();
        assert_eq!(dists.len(), 4);
        for &d in &dists {
            assert!(d >= 0.0);
        }
    }

    #[test]
    fn test_oas_insufficient_samples() {
        let est = OAS::<f64>::new();
        let x = array![[1.0, 2.0]];
        assert!(est.fit(&x, &()).is_err());
    }

    #[test]
    fn test_oas_default() {
        let est = OAS::<f64>::default();
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    // ---- MinCovDet ----

    #[test]
    fn test_mincovdet_basic() {
        let est = MinCovDet::<f64>::new().random_state(42);
        let x = array![
            [1.0, 2.0],
            [3.0, 4.0],
            [5.0, 6.0],
            [7.0, 8.0],
            [2.0, 3.0],
            [4.0, 5.0],
            [6.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
        assert_eq!(fitted.location().len(), 2);
        assert_eq!(fitted.support().len(), 7);
    }

    #[test]
    fn test_mincovdet_with_outlier() {
        let est = MinCovDet::<f64>::new().random_state(0);
        // Cluster at origin + one outlier.
        let x = array![
            [0.0, 0.0],
            [0.1, 0.1],
            [-0.1, 0.1],
            [0.1, -0.1],
            [-0.1, -0.1],
            [0.05, 0.05],
            [10.0, 10.0], // outlier
        ];
        let fitted = est.fit(&x, &()).unwrap();
        // The outlier should generally not be in the support set.
        let dists = fitted.mahalanobis(&x).unwrap();
        // The outlier should have the largest distance.
        let outlier_dist = dists[6];
        for i in 0..6 {
            assert!(
                dists[i] < outlier_dist,
                "inlier dist {} should be < outlier dist {}",
                dists[i],
                outlier_dist
            );
        }
    }

    #[test]
    fn test_mincovdet_support_fraction() {
        let est = MinCovDet::<f64>::new()
            .support_fraction(0.7)
            .random_state(42);
        let x = array![
            [1.0, 2.0],
            [3.0, 4.0],
            [5.0, 6.0],
            [7.0, 8.0],
            [2.0, 3.0],
            [4.0, 5.0],
            [6.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let n_support: usize = fitted.support().iter().filter(|&&b| b).count();
        assert!(n_support >= 4, "expected at least 4 support samples");
    }

    #[test]
    fn test_mincovdet_invalid_support_fraction() {
        let est = MinCovDet::<f64>::new().support_fraction(0.3);
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0],];
        assert!(est.fit(&x, &()).is_err());
    }

    #[test]
    fn test_mincovdet_insufficient_samples() {
        let est = MinCovDet::<f64>::new();
        let x = array![[1.0, 2.0], [3.0, 4.0]];
        assert!(est.fit(&x, &()).is_err());
    }

    #[test]
    fn test_mincovdet_default() {
        let est = MinCovDet::<f64>::default();
        let x = array![
            [1.0, 2.0],
            [3.0, 4.0],
            [5.0, 6.0],
            [7.0, 8.0],
            [2.0, 3.0],
            [4.0, 5.0],
            [6.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    #[test]
    fn test_mincovdet_symmetric() {
        let est = MinCovDet::<f64>::new().random_state(0);
        let x = array![
            [1.0, 2.0, 3.0],
            [4.0, 5.0, 6.0],
            [7.0, 8.0, 10.0],
            [2.0, 3.0, 5.0],
            [3.0, 4.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let cov = fitted.covariance();
        for i in 0..cov.nrows() {
            for j in 0..cov.ncols() {
                assert_abs_diff_eq!(cov[[i, j]], cov[[j, i]], epsilon = 1e-10);
            }
        }
    }

    // ---- EllipticEnvelope ----

    #[test]
    fn test_elliptic_envelope_basic() {
        let est = EllipticEnvelope::<f64>::new().random_state(42);
        let x = array![
            [1.0, 2.0],
            [3.0, 4.0],
            [5.0, 6.0],
            [7.0, 8.0],
            [2.0, 3.0],
            [4.0, 5.0],
            [6.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let labels = fitted.predict(&x).unwrap();
        assert_eq!(labels.len(), 7);
        for &l in &labels {
            assert!(l == 1 || l == -1);
        }
    }

    #[test]
    fn test_elliptic_envelope_detects_outlier() {
        let est = EllipticEnvelope::<f64>::new()
            .contamination(0.15)
            .random_state(0);
        let x = array![
            [0.0, 0.0],
            [0.1, 0.1],
            [-0.1, 0.1],
            [0.1, -0.1],
            [-0.1, -0.1],
            [0.05, 0.05],
            [100.0, 100.0], // extreme outlier
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let labels = fitted.predict(&x).unwrap();
        // The extreme outlier should be labelled -1.
        assert_eq!(labels[6], -1, "extreme outlier should be detected");
    }

    #[test]
    fn test_elliptic_envelope_decision_function() {
        let est = EllipticEnvelope::<f64>::new().random_state(42);
        let x = array![
            [1.0, 2.0],
            [3.0, 4.0],
            [5.0, 6.0],
            [7.0, 8.0],
            [2.0, 3.0],
            [4.0, 5.0],
            [6.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        let scores = fitted.decision_function(&x).unwrap();
        let labels = fitted.predict(&x).unwrap();
        // Positive decision = inlier = +1, negative = outlier = -1.
        for i in 0..x.nrows() {
            if scores[i] > 0.0 {
                assert_eq!(labels[i], 1);
            } else {
                assert_eq!(labels[i], -1);
            }
        }
    }

    #[test]
    fn test_elliptic_envelope_invalid_contamination() {
        let est = EllipticEnvelope::<f64>::new().contamination(0.0);
        let x = array![[1.0, 2.0], [3.0, 4.0], [5.0, 6.0], [7.0, 8.0],];
        assert!(est.fit(&x, &()).is_err());

        let est2 = EllipticEnvelope::<f64>::new().contamination(0.5);
        assert!(est2.fit(&x, &()).is_err());
    }

    #[test]
    fn test_elliptic_envelope_threshold_positive() {
        let est = EllipticEnvelope::<f64>::new().random_state(0);
        let x = array![
            [1.0, 2.0],
            [3.0, 4.0],
            [5.0, 6.0],
            [7.0, 8.0],
            [2.0, 3.0],
            [4.0, 5.0],
            [6.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        assert!(fitted.threshold() > 0.0, "threshold should be positive");
    }

    #[test]
    fn test_elliptic_envelope_default() {
        let est = EllipticEnvelope::<f64>::default();
        let x = array![
            [1.0, 2.0],
            [3.0, 4.0],
            [5.0, 6.0],
            [7.0, 8.0],
            [2.0, 3.0],
            [4.0, 5.0],
            [6.0, 7.0],
        ];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    // ---- Chi-squared approximation ----

    #[test]
    fn test_chi2_quantile_approx_sanity() {
        // chi2(2, 0.95) ~ 5.991
        let q = chi2_quantile_approx(2.0, 0.95);
        assert!(q > 4.0 && q < 8.0, "chi2(2,0.95) approx = {q}");

        // chi2(5, 0.99) ~ 15.086
        let q2 = chi2_quantile_approx(5.0, 0.99);
        assert!(q2 > 10.0 && q2 < 20.0, "chi2(5,0.99) approx = {q2}");
    }

    #[test]
    fn test_normal_quantile_approx_sanity() {
        // z(0.5) should be ~0
        let z_half = normal_quantile_approx(0.5);
        assert_abs_diff_eq!(z_half, 0.0, epsilon = 1e-10);

        // z(0.975) ~ 1.96
        let z_975 = normal_quantile_approx(0.975);
        assert!(
            (z_975 - 1.96).abs() < 0.05,
            "z(0.975) = {z_975}, expected ~1.96"
        );
    }

    // ---- f32 support ----

    #[test]
    fn test_empirical_covariance_f32() {
        let est = EmpiricalCovariance::<f32>::new();
        let x: Array2<f32> = array![[0.0f32, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0],];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    #[test]
    fn test_shrunk_covariance_f32() {
        let est = ShrunkCovariance::<f32>::new(0.5);
        let x: Array2<f32> = array![[0.0f32, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0],];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    #[test]
    fn test_ledoit_wolf_f32() {
        let est = LedoitWolf::<f32>::new();
        let x: Array2<f32> = array![[0.0f32, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0],];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }

    #[test]
    fn test_oas_f32() {
        let est = OAS::<f32>::new();
        let x: Array2<f32> = array![[0.0f32, 0.0], [2.0, 0.0], [0.0, 2.0], [2.0, 2.0],];
        let fitted = est.fit(&x, &()).unwrap();
        assert_eq!(fitted.covariance().dim(), (2, 2));
    }
}