This file is indexed.

/usr/share/pyshared/openturns/statistics.py is in python-openturns 1.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.


"""
Statistical classes.
"""


from sys import version_info
if version_info >= (2,6,0):
    def swig_import_helper():
        from os.path import dirname
        import imp
        fp = None
        try:
            fp, pathname, description = imp.find_module('_statistics', [dirname(__file__)])
        except ImportError:
            import _statistics
            return _statistics
        if fp is not None:
            try:
                _mod = imp.load_module('_statistics', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _statistics = swig_import_helper()
    del swig_import_helper
else:
    import _statistics
del version_info
try:
    _swig_property = property
except NameError:
    pass # Python < 2.2 doesn't have 'property'.
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
    if (name == "thisown"): return self.this.own(value)
    if (name == "this"):
        if type(value).__name__ == 'SwigPyObject':
            self.__dict__[name] = value
            return
    method = class_type.__swig_setmethods__.get(name,None)
    if method: return method(self,value)
    if (not static):
        self.__dict__[name] = value
    else:
        raise AttributeError("You cannot add attributes to %s" % self)

def _swig_setattr(self,class_type,name,value):
    return _swig_setattr_nondynamic(self,class_type,name,value,0)

def _swig_getattr(self,class_type,name):
    if (name == "thisown"): return self.this.own()
    method = class_type.__swig_getmethods__.get(name,None)
    if method: return method(self)
    raise AttributeError(name)

def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)

try:
    _object = object
    _newclass = 1
except AttributeError:
    class _object : pass
    _newclass = 0


class SwigPyIterator(_object):
    """Proxy of C++ swig::SwigPyIterator class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
    __repr__ = _swig_repr
    __swig_destroy__ = _statistics.delete_SwigPyIterator
    __del__ = lambda self : None;
    def value(self):
        """value(SwigPyIterator self) -> PyObject *"""
        return _statistics.SwigPyIterator_value(self)

    def incr(self, n=1):
        """
        incr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        incr(SwigPyIterator self) -> SwigPyIterator
        """
        return _statistics.SwigPyIterator_incr(self, n)

    def decr(self, n=1):
        """
        decr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        decr(SwigPyIterator self) -> SwigPyIterator
        """
        return _statistics.SwigPyIterator_decr(self, n)

    def distance(self, *args):
        """distance(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t"""
        return _statistics.SwigPyIterator_distance(self, *args)

    def equal(self, *args):
        """equal(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _statistics.SwigPyIterator_equal(self, *args)

    def copy(self):
        """copy(SwigPyIterator self) -> SwigPyIterator"""
        return _statistics.SwigPyIterator_copy(self)

    def next(self):
        """next(SwigPyIterator self) -> PyObject *"""
        return _statistics.SwigPyIterator_next(self)

    def __next__(self):
        """__next__(SwigPyIterator self) -> PyObject *"""
        return _statistics.SwigPyIterator___next__(self)

    def previous(self):
        """previous(SwigPyIterator self) -> PyObject *"""
        return _statistics.SwigPyIterator_previous(self)

    def advance(self, *args):
        """advance(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _statistics.SwigPyIterator_advance(self, *args)

    def __eq__(self, *args):
        """__eq__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _statistics.SwigPyIterator___eq__(self, *args)

    def __ne__(self, *args):
        """__ne__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _statistics.SwigPyIterator___ne__(self, *args)

    def __iadd__(self, *args):
        """__iadd__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _statistics.SwigPyIterator___iadd__(self, *args)

    def __isub__(self, *args):
        """__isub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _statistics.SwigPyIterator___isub__(self, *args)

    def __add__(self, *args):
        """__add__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _statistics.SwigPyIterator___add__(self, *args)

    def __sub__(self, *args):
        """
        __sub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
        __sub__(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t
        """
        return _statistics.SwigPyIterator___sub__(self, *args)

    def __iter__(self): return self
SwigPyIterator_swigregister = _statistics.SwigPyIterator_swigregister
SwigPyIterator_swigregister(SwigPyIterator)

GCC_VERSION = _statistics.GCC_VERSION
class TestFailed:
  """
  TestFailed is used to raise an uniform exception in tests
  """
  __type = "TestFailed"
  def __init__(self,reason=""):
    self.reason = reason
  def type(self):
    return TestFailed.__type
  def what(self):
    return self.reason
  def __str__(self):
    return TestFailed.__type + ": " + self.reason
  def __lshift__(self,ch):
    self.reason += ch
    return self

import openturns.common
import openturns.wrapper
import openturns.typ
import openturns.graph
import openturns.func
import openturns.geom
class Compact(openturns.typ.HistoryStrategyImplementation):
    """Proxy of C++ OT::Compact class"""
    __swig_setmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Compact, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Compact, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.Compact_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Compact self) -> OT::String"""
        return _statistics.Compact_getClassName(self)

    def store(self, *args):
        """
        store(Compact self, NumericalPoint point)
        store(Compact self, NumericalSample sample)
        store(Compact self, NumericalPoint point)
        """
        return _statistics.Compact_store(self, *args)

    def getSample(self):
        """getSample(Compact self) -> NumericalSample"""
        return _statistics.Compact_getSample(self)

    def getHalfMaximumSize(self):
        """getHalfMaximumSize(Compact self) -> OT::UnsignedLong"""
        return _statistics.Compact_getHalfMaximumSize(self)

    def getIndex(self):
        """getIndex(Compact self) -> OT::UnsignedLong"""
        return _statistics.Compact_getIndex(self)

    def __repr__(self):
        """__repr__(Compact self) -> OT::String"""
        return _statistics.Compact___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::Compact self) -> Compact
        __init__(OT::Compact self, OT::UnsignedLong const halfMaximumSize) -> Compact
        __init__(OT::Compact self, Compact other) -> Compact
        """
        this = _statistics.new_Compact(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_Compact
    __del__ = lambda self : None;
Compact_swigregister = _statistics.Compact_swigregister
Compact_swigregister(Compact)

def Compact_GetClassName():
  """Compact_GetClassName() -> OT::String"""
  return _statistics.Compact_GetClassName()

class Full(openturns.typ.HistoryStrategyImplementation):
    """Proxy of C++ OT::Full class"""
    __swig_setmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Full, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Full, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.Full_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Full self) -> OT::String"""
        return _statistics.Full_getClassName(self)

    def store(self, *args):
        """
        store(Full self, NumericalPoint point)
        store(Full self, NumericalSample sample)
        """
        return _statistics.Full_store(self, *args)

    def __repr__(self):
        """__repr__(Full self) -> OT::String"""
        return _statistics.Full___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::Full self) -> Full
        __init__(OT::Full self, Full other) -> Full
        """
        this = _statistics.new_Full(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_Full
    __del__ = lambda self : None;
Full_swigregister = _statistics.Full_swigregister
Full_swigregister(Full)

def Full_GetClassName():
  """Full_GetClassName() -> OT::String"""
  return _statistics.Full_GetClassName()

class Last(openturns.typ.HistoryStrategyImplementation):
    """Proxy of C++ OT::Last class"""
    __swig_setmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Last, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Last, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.Last_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Last self) -> OT::String"""
        return _statistics.Last_getClassName(self)

    def store(self, *args):
        """
        store(Last self, NumericalPoint point)
        store(Last self, NumericalSample sample)
        store(Last self, NumericalPoint point)
        """
        return _statistics.Last_store(self, *args)

    def getSample(self):
        """getSample(Last self) -> NumericalSample"""
        return _statistics.Last_getSample(self)

    def getMaximumSize(self):
        """getMaximumSize(Last self) -> OT::UnsignedLong"""
        return _statistics.Last_getMaximumSize(self)

    def getIndex(self):
        """getIndex(Last self) -> OT::UnsignedLong"""
        return _statistics.Last_getIndex(self)

    def getHasWrapped(self):
        """getHasWrapped(Last self) -> OT::Bool"""
        return _statistics.Last_getHasWrapped(self)

    def __repr__(self):
        """__repr__(Last self) -> OT::String"""
        return _statistics.Last___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::Last self) -> Last
        __init__(OT::Last self, OT::UnsignedLong const maximumSize) -> Last
        __init__(OT::Last self, Last other) -> Last
        """
        this = _statistics.new_Last(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_Last
    __del__ = lambda self : None;
Last_swigregister = _statistics.Last_swigregister
Last_swigregister(Last)

def Last_GetClassName():
  """Last_GetClassName() -> OT::String"""
  return _statistics.Last_GetClassName()

class Null(openturns.typ.HistoryStrategyImplementation):
    """Proxy of C++ OT::Null class"""
    __swig_setmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Null, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.typ.HistoryStrategyImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Null, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.Null_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Null self) -> OT::String"""
        return _statistics.Null_getClassName(self)

    def store(self, *args):
        """
        store(Null self, NumericalPoint point)
        store(Null self, NumericalSample sample)
        """
        return _statistics.Null_store(self, *args)

    def __repr__(self):
        """__repr__(Null self) -> OT::String"""
        return _statistics.Null___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::Null self) -> Null
        __init__(OT::Null self, Null other) -> Null
        """
        this = _statistics.new_Null(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_Null
    __del__ = lambda self : None;
Null_swigregister = _statistics.Null_swigregister
Null_swigregister(Null)

def Null_GetClassName():
  """Null_GetClassName() -> OT::String"""
  return _statistics.Null_GetClassName()

class ConfidenceInterval(openturns.common.PersistentObject):
    """Proxy of C++ OT::ConfidenceInterval class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ConfidenceInterval, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ConfidenceInterval, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.ConfidenceInterval_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ConfidenceInterval self) -> OT::String"""
        return _statistics.ConfidenceInterval_getClassName(self)

    def setDescription(self, *args):
        """setDescription(ConfidenceInterval self, Description description)"""
        return _statistics.ConfidenceInterval_setDescription(self, *args)

    def getDescription(self):
        """getDescription(ConfidenceInterval self) -> Description"""
        return _statistics.ConfidenceInterval_getDescription(self)

    def __repr__(self):
        """__repr__(ConfidenceInterval self) -> OT::String"""
        return _statistics.ConfidenceInterval___repr__(self)

    def setValues(self, *args):
        """setValues(ConfidenceInterval self, OT::NumericalScalar const firstPt, OT::NumericalScalar const lastPt)"""
        return _statistics.ConfidenceInterval_setValues(self, *args)

    def getFirst(self):
        """getFirst(ConfidenceInterval self) -> OT::NumericalScalar const &"""
        return _statistics.ConfidenceInterval_getFirst(self)

    def getLast(self):
        """getLast(ConfidenceInterval self) -> OT::NumericalScalar const &"""
        return _statistics.ConfidenceInterval_getLast(self)

    def __eq__(self, *args):
        """__eq__(ConfidenceInterval self, ConfidenceInterval rhs) -> OT::Bool"""
        return _statistics.ConfidenceInterval___eq__(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::ConfidenceInterval self, OT::NumericalScalar const firstPt=0.0, OT::NumericalScalar const lastPt=1.0) -> ConfidenceInterval
        __init__(OT::ConfidenceInterval self, OT::NumericalScalar const firstPt=0.0) -> ConfidenceInterval
        __init__(OT::ConfidenceInterval self) -> ConfidenceInterval
        __init__(OT::ConfidenceInterval self, ConfidenceInterval other) -> ConfidenceInterval
        __init__(OT::ConfidenceInterval self, PyObject * pyObj) -> ConfidenceInterval
        """
        this = _statistics.new_ConfidenceInterval(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_ConfidenceInterval
    __del__ = lambda self : None;
ConfidenceInterval_swigregister = _statistics.ConfidenceInterval_swigregister
ConfidenceInterval_swigregister(ConfidenceInterval)

def ConfidenceInterval_GetClassName():
  """ConfidenceInterval_GetClassName() -> OT::String"""
  return _statistics.ConfidenceInterval_GetClassName()

class ConfidenceIntervalCollection(_object):
    """Proxy of C++ OT::Collection<(OT::ConfidenceInterval)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, ConfidenceIntervalCollection, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, ConfidenceIntervalCollection, name)
    __swig_destroy__ = _statistics.delete_ConfidenceIntervalCollection
    __del__ = lambda self : None;
    def clear(self):
        """clear(ConfidenceIntervalCollection self)"""
        return _statistics.ConfidenceIntervalCollection_clear(self)

    def __len__(self):
        """__len__(ConfidenceIntervalCollection self) -> OT::UnsignedLong"""
        return _statistics.ConfidenceIntervalCollection___len__(self)

    def __eq__(self, *args):
        """__eq__(ConfidenceIntervalCollection self, ConfidenceIntervalCollection rhs) -> OT::Bool"""
        return _statistics.ConfidenceIntervalCollection___eq__(self, *args)

    def __contains__(self, *args):
        """__contains__(ConfidenceIntervalCollection self, ConfidenceInterval val) -> OT::Bool"""
        return _statistics.ConfidenceIntervalCollection___contains__(self, *args)

    def __getitem__(self, *args):
        """__getitem__(ConfidenceIntervalCollection self, OT::UnsignedLong const i) -> ConfidenceInterval"""
        return _statistics.ConfidenceIntervalCollection___getitem__(self, *args)

    def __setitem__(self, *args):
        """__setitem__(ConfidenceIntervalCollection self, OT::UnsignedLong const i, ConfidenceInterval val)"""
        return _statistics.ConfidenceIntervalCollection___setitem__(self, *args)

    def __delitem__(self, *args):
        """__delitem__(ConfidenceIntervalCollection self, OT::UnsignedLong const i)"""
        return _statistics.ConfidenceIntervalCollection___delitem__(self, *args)

    def at(self, *args):
        """
        at(ConfidenceIntervalCollection self, OT::UnsignedLong const i) -> ConfidenceInterval
        at(ConfidenceIntervalCollection self, OT::UnsignedLong const i) -> ConfidenceInterval
        """
        return _statistics.ConfidenceIntervalCollection_at(self, *args)

    def add(self, *args):
        """
        add(ConfidenceIntervalCollection self, ConfidenceInterval elt)
        add(ConfidenceIntervalCollection self, ConfidenceIntervalCollection coll)
        """
        return _statistics.ConfidenceIntervalCollection_add(self, *args)

    def getSize(self):
        """getSize(ConfidenceIntervalCollection self) -> OT::UnsignedLong"""
        return _statistics.ConfidenceIntervalCollection_getSize(self)

    def resize(self, *args):
        """resize(ConfidenceIntervalCollection self, OT::UnsignedLong const newSize)"""
        return _statistics.ConfidenceIntervalCollection_resize(self, *args)

    def isEmpty(self):
        """isEmpty(ConfidenceIntervalCollection self) -> OT::Bool"""
        return _statistics.ConfidenceIntervalCollection_isEmpty(self)

    def __repr__(self):
        """__repr__(ConfidenceIntervalCollection self) -> OT::String"""
        return _statistics.ConfidenceIntervalCollection___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ConfidenceIntervalCollection self, OT::String const & offset="") -> OT::String
        __str__(ConfidenceIntervalCollection self) -> OT::String
        """
        return _statistics.ConfidenceIntervalCollection___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::Collection<(OT::ConfidenceInterval)> self) -> ConfidenceIntervalCollection
        __init__(OT::Collection<(OT::ConfidenceInterval)> self, OT::UnsignedLong const size) -> ConfidenceIntervalCollection
        __init__(OT::Collection<(OT::ConfidenceInterval)> self, OT::UnsignedLong const size, ConfidenceInterval value) -> ConfidenceIntervalCollection
        __init__(OT::Collection<(OT::ConfidenceInterval)> self, PyObject * pyObj) -> ConfidenceIntervalCollection
        __init__(OT::Collection<(OT::ConfidenceInterval)> self, ConfidenceIntervalCollection other) -> ConfidenceIntervalCollection
        """
        this = _statistics.new_ConfidenceIntervalCollection(*args)
        try: self.this.append(this)
        except: self.this = this
ConfidenceIntervalCollection_swigregister = _statistics.ConfidenceIntervalCollection_swigregister
ConfidenceIntervalCollection_swigregister(ConfidenceIntervalCollection)

class LinearModel(openturns.common.PersistentObject):
    """Proxy of C++ OT::LinearModel class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LinearModel, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LinearModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.LinearModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LinearModel self) -> OT::String"""
        return _statistics.LinearModel_getClassName(self)

    def __repr__(self):
        """__repr__(LinearModel self) -> OT::String"""
        return _statistics.LinearModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(LinearModel self, OT::String const & offset="") -> OT::String
        __str__(LinearModel self) -> OT::String
        """
        return _statistics.LinearModel___str__(self, offset)

    def getRegression(self):
        """getRegression(LinearModel self) -> NumericalPoint"""
        return _statistics.LinearModel_getRegression(self)

    def getConfidenceIntervals(self):
        """getConfidenceIntervals(LinearModel self) -> ConfidenceIntervalCollection"""
        return _statistics.LinearModel_getConfidenceIntervals(self)

    def getPValues(self):
        """getPValues(LinearModel self) -> NumericalScalarCollection"""
        return _statistics.LinearModel_getPValues(self)

    def getPredicted(self, *args):
        """getPredicted(LinearModel self, NumericalSample predictor) -> NumericalSample"""
        return _statistics.LinearModel_getPredicted(self, *args)

    def getResidual(self, *args):
        """getResidual(LinearModel self, NumericalSample predictor, NumericalSample measured) -> NumericalSample"""
        return _statistics.LinearModel_getResidual(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::LinearModel self) -> LinearModel
        __init__(OT::LinearModel self, NumericalPoint vectorR, ConfidenceIntervalCollection intervalsColl, NumericalScalarCollection pValuesOfR) -> LinearModel
        __init__(OT::LinearModel self, NumericalPoint vectorR) -> LinearModel
        __init__(OT::LinearModel self, LinearModel other) -> LinearModel
        """
        this = _statistics.new_LinearModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_LinearModel
    __del__ = lambda self : None;
LinearModel_swigregister = _statistics.LinearModel_swigregister
LinearModel_swigregister(LinearModel)

def LinearModel_GetClassName():
  """LinearModel_GetClassName() -> OT::String"""
  return _statistics.LinearModel_GetClassName()


def LinearModel_operator___eq__(*args):
  """LinearModel_operator___eq__(LinearModel lhs, LinearModel rhs) -> OT::Bool"""
  return _statistics.LinearModel_operator___eq__(*args)
class LinearModelFactory(_object):
    """Proxy of C++ OT::LinearModelFactory class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, LinearModelFactory, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, LinearModelFactory, name)
    __repr__ = _swig_repr
    def build(self, *args):
        """
        build(LinearModelFactory self, NumericalSample samplePred, NumericalSample sampleLab, OT::NumericalScalar const levelValue=OT::ResourceMap::GetAsNumericalScalar( "LinearModelFactory-DefaultLevelValue" )) -> LinearModel
        build(LinearModelFactory self, NumericalSample samplePred, NumericalSample sampleLab) -> LinearModel
        """
        return _statistics.LinearModelFactory_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::LinearModelFactory self) -> LinearModelFactory
        __init__(OT::LinearModelFactory self, LinearModelFactory other) -> LinearModelFactory
        """
        this = _statistics.new_LinearModelFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_LinearModelFactory
    __del__ = lambda self : None;
LinearModelFactory_swigregister = _statistics.LinearModelFactory_swigregister
LinearModelFactory_swigregister(LinearModelFactory)

class TestResult(openturns.common.PersistentObject):
    """Proxy of C++ OT::TestResult class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, TestResult, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, TestResult, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.TestResult_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(TestResult self) -> OT::String"""
        return _statistics.TestResult_getClassName(self)

    def setDescription(self, *args):
        """setDescription(TestResult self, Description description)"""
        return _statistics.TestResult_setDescription(self, *args)

    def getDescription(self):
        """getDescription(TestResult self) -> Description"""
        return _statistics.TestResult_getDescription(self)

    def __repr__(self):
        """__repr__(TestResult self) -> OT::String"""
        return _statistics.TestResult___repr__(self)

    def getBinaryQualityMeasure(self):
        """getBinaryQualityMeasure(TestResult self) -> OT::Bool"""
        return _statistics.TestResult_getBinaryQualityMeasure(self)

    def getPValue(self):
        """getPValue(TestResult self) -> OT::NumericalScalar"""
        return _statistics.TestResult_getPValue(self)

    def getThreshold(self):
        """getThreshold(TestResult self) -> OT::NumericalScalar"""
        return _statistics.TestResult_getThreshold(self)

    def getTestType(self):
        """getTestType(TestResult self) -> OT::String"""
        return _statistics.TestResult_getTestType(self)

    def __eq__(self, *args):
        """__eq__(TestResult self, TestResult other) -> OT::Bool"""
        return _statistics.TestResult___eq__(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::TestResult self) -> TestResult
        __init__(OT::TestResult self, OT::String const & type, OT::Bool const binMeasure, OT::NumericalScalar const pVal, 
            OT::NumericalScalar const pThreshold) -> TestResult
        __init__(OT::TestResult self, TestResult other) -> TestResult
        __init__(OT::TestResult self, PyObject * pyObj) -> TestResult
        """
        this = _statistics.new_TestResult(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_TestResult
    __del__ = lambda self : None;
TestResult_swigregister = _statistics.TestResult_swigregister
TestResult_swigregister(TestResult)

def TestResult_GetClassName():
  """TestResult_GetClassName() -> OT::String"""
  return _statistics.TestResult_GetClassName()

class RandomGeneratorState(_object):
    """Proxy of C++ OT::RandomGeneratorState class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, RandomGeneratorState, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, RandomGeneratorState, name)
    __swig_setmethods__["state_"] = _statistics.RandomGeneratorState_state__set
    __swig_getmethods__["state_"] = _statistics.RandomGeneratorState_state__get
    if _newclass:state_ = _swig_property(_statistics.RandomGeneratorState_state__get, _statistics.RandomGeneratorState_state__set)
    __swig_setmethods__["index_"] = _statistics.RandomGeneratorState_index__set
    __swig_getmethods__["index_"] = _statistics.RandomGeneratorState_index__get
    if _newclass:index_ = _swig_property(_statistics.RandomGeneratorState_index__get, _statistics.RandomGeneratorState_index__set)
    __swig_destroy__ = _statistics.delete_RandomGeneratorState
    __del__ = lambda self : None;
    def __repr__(self):
        """__repr__(RandomGeneratorState self) -> OT::String const"""
        return _statistics.RandomGeneratorState___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(RandomGeneratorState self, OT::String const & offset="") -> OT::String const
        __str__(RandomGeneratorState self) -> OT::String const
        """
        return _statistics.RandomGeneratorState___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::RandomGeneratorState self) -> RandomGeneratorState
        __init__(OT::RandomGeneratorState self, UnsignedLongCollection state, OT::UnsignedLong const index) -> RandomGeneratorState
        __init__(OT::RandomGeneratorState self, RandomGeneratorState other) -> RandomGeneratorState
        """
        this = _statistics.new_RandomGeneratorState(*args)
        try: self.this.append(this)
        except: self.this = this
RandomGeneratorState_swigregister = _statistics.RandomGeneratorState_swigregister
RandomGeneratorState_swigregister(RandomGeneratorState)

class RandomGenerator(_object):
    """Proxy of C++ OT::RandomGenerator class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, RandomGenerator, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, RandomGenerator, name)
    __repr__ = _swig_repr
    def SetSeed(*args):
        """SetSeed(OT::UnsignedLong const seed)"""
        return _statistics.RandomGenerator_SetSeed(*args)

    if _newclass:SetSeed = staticmethod(SetSeed)
    __swig_getmethods__["SetSeed"] = lambda x: SetSeed
    def SetState(*args):
        """SetState(RandomGeneratorState state)"""
        return _statistics.RandomGenerator_SetState(*args)

    if _newclass:SetState = staticmethod(SetState)
    __swig_getmethods__["SetState"] = lambda x: SetState
    def GetState():
        """GetState() -> RandomGeneratorState"""
        return _statistics.RandomGenerator_GetState()

    if _newclass:GetState = staticmethod(GetState)
    __swig_getmethods__["GetState"] = lambda x: GetState
    def Generate(*args):
        """
        Generate() -> OT::NumericalScalar
        Generate(OT::UnsignedLong const size) -> NumericalPoint
        """
        return _statistics.RandomGenerator_Generate(*args)

    if _newclass:Generate = staticmethod(Generate)
    __swig_getmethods__["Generate"] = lambda x: Generate
    def IntegerGenerate(*args):
        """
        IntegerGenerate(OT::UnsignedLong const n) -> OT::UnsignedLong
        IntegerGenerate(OT::UnsignedLong const size, OT::UnsignedLong const n) -> UnsignedLongCollection
        """
        return _statistics.RandomGenerator_IntegerGenerate(*args)

    if _newclass:IntegerGenerate = staticmethod(IntegerGenerate)
    __swig_getmethods__["IntegerGenerate"] = lambda x: IntegerGenerate
    def __init__(self, *args): 
        """
        __init__(OT::RandomGenerator self) -> RandomGenerator
        __init__(OT::RandomGenerator self, RandomGenerator other) -> RandomGenerator
        """
        this = _statistics.new_RandomGenerator(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_RandomGenerator
    __del__ = lambda self : None;
RandomGenerator_swigregister = _statistics.RandomGenerator_swigregister
RandomGenerator_swigregister(RandomGenerator)

def RandomGenerator_SetSeed(*args):
  """RandomGenerator_SetSeed(OT::UnsignedLong const seed)"""
  return _statistics.RandomGenerator_SetSeed(*args)

def RandomGenerator_SetState(*args):
  """RandomGenerator_SetState(RandomGeneratorState state)"""
  return _statistics.RandomGenerator_SetState(*args)

def RandomGenerator_GetState():
  """RandomGenerator_GetState() -> RandomGeneratorState"""
  return _statistics.RandomGenerator_GetState()

def RandomGenerator_Generate(*args):
  """
    Generate() -> OT::NumericalScalar
    RandomGenerator_Generate(OT::UnsignedLong const size) -> NumericalPoint
    """
  return _statistics.RandomGenerator_Generate(*args)

def RandomGenerator_IntegerGenerate(*args):
  """
    IntegerGenerate(OT::UnsignedLong const n) -> OT::UnsignedLong
    RandomGenerator_IntegerGenerate(OT::UnsignedLong const size, OT::UnsignedLong const n) -> UnsignedLongCollection
    """
  return _statistics.RandomGenerator_IntegerGenerate(*args)

class LowDiscrepancySequenceImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::LowDiscrepancySequenceImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LowDiscrepancySequenceImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LowDiscrepancySequenceImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.LowDiscrepancySequenceImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LowDiscrepancySequenceImplementation self) -> OT::String"""
        return _statistics.LowDiscrepancySequenceImplementation_getClassName(self)

    def initialize(self, *args):
        """initialize(LowDiscrepancySequenceImplementation self, OT::UnsignedLong const dimension)"""
        return _statistics.LowDiscrepancySequenceImplementation_initialize(self, *args)

    def getDimension(self):
        """getDimension(LowDiscrepancySequenceImplementation self) -> OT::UnsignedLong"""
        return _statistics.LowDiscrepancySequenceImplementation_getDimension(self)

    def generate(self, *args):
        """
        generate(LowDiscrepancySequenceImplementation self) -> NumericalPoint
        generate(LowDiscrepancySequenceImplementation self, OT::UnsignedLong const size) -> NumericalSample
        """
        return _statistics.LowDiscrepancySequenceImplementation_generate(self, *args)

    def ComputeStarDiscrepancy(*args):
        """ComputeStarDiscrepancy(NumericalSample sample) -> OT::NumericalScalar"""
        return _statistics.LowDiscrepancySequenceImplementation_ComputeStarDiscrepancy(*args)

    if _newclass:ComputeStarDiscrepancy = staticmethod(ComputeStarDiscrepancy)
    __swig_getmethods__["ComputeStarDiscrepancy"] = lambda x: ComputeStarDiscrepancy
    def __repr__(self):
        """__repr__(LowDiscrepancySequenceImplementation self) -> OT::String"""
        return _statistics.LowDiscrepancySequenceImplementation___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::LowDiscrepancySequenceImplementation self, OT::UnsignedLong const dimension=1) -> LowDiscrepancySequenceImplementation
        __init__(OT::LowDiscrepancySequenceImplementation self) -> LowDiscrepancySequenceImplementation
        __init__(OT::LowDiscrepancySequenceImplementation self, LowDiscrepancySequenceImplementation other) -> LowDiscrepancySequenceImplementation
        """
        this = _statistics.new_LowDiscrepancySequenceImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_LowDiscrepancySequenceImplementation
    __del__ = lambda self : None;
LowDiscrepancySequenceImplementation_swigregister = _statistics.LowDiscrepancySequenceImplementation_swigregister
LowDiscrepancySequenceImplementation_swigregister(LowDiscrepancySequenceImplementation)

def LowDiscrepancySequenceImplementation_GetClassName():
  """LowDiscrepancySequenceImplementation_GetClassName() -> OT::String"""
  return _statistics.LowDiscrepancySequenceImplementation_GetClassName()

def LowDiscrepancySequenceImplementation_ComputeStarDiscrepancy(*args):
  """LowDiscrepancySequenceImplementation_ComputeStarDiscrepancy(NumericalSample sample) -> OT::NumericalScalar"""
  return _statistics.LowDiscrepancySequenceImplementation_ComputeStarDiscrepancy(*args)

class LowDiscrepancySequenceImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::LowDiscrepancySequenceImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LowDiscrepancySequenceImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LowDiscrepancySequenceImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::LowDiscrepancySequenceImplementation)> self) -> LowDiscrepancySequenceImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::LowDiscrepancySequenceImplementation)> self, OT::TypedInterfaceObject< OT::LowDiscrepancySequenceImplementation >::Implementation const & impl) -> LowDiscrepancySequenceImplementationTypedInterfaceObject
        """
        this = _statistics.new_LowDiscrepancySequenceImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(LowDiscrepancySequenceImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::LowDiscrepancySequenceImplementation >::Implementation
        getImplementation(LowDiscrepancySequenceImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::LowDiscrepancySequenceImplementation >::Implementation const &
        """
        return _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(LowDiscrepancySequenceImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(LowDiscrepancySequenceImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(LowDiscrepancySequenceImplementationTypedInterfaceObject self, LowDiscrepancySequenceImplementationTypedInterfaceObject other)"""
        return _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(LowDiscrepancySequenceImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(LowDiscrepancySequenceImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(LowDiscrepancySequenceImplementationTypedInterfaceObject self, LowDiscrepancySequenceImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_LowDiscrepancySequenceImplementationTypedInterfaceObject
    __del__ = lambda self : None;
LowDiscrepancySequenceImplementationTypedInterfaceObject_swigregister = _statistics.LowDiscrepancySequenceImplementationTypedInterfaceObject_swigregister
LowDiscrepancySequenceImplementationTypedInterfaceObject_swigregister(LowDiscrepancySequenceImplementationTypedInterfaceObject)

class LowDiscrepancySequence(LowDiscrepancySequenceImplementationTypedInterfaceObject):
    """Proxy of C++ OT::LowDiscrepancySequence class"""
    __swig_setmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LowDiscrepancySequence, name, value)
    __swig_getmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LowDiscrepancySequence, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.LowDiscrepancySequence_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LowDiscrepancySequence self) -> OT::String"""
        return _statistics.LowDiscrepancySequence_getClassName(self)

    def initialize(self, *args):
        """initialize(LowDiscrepancySequence self, OT::UnsignedLong const dimension)"""
        return _statistics.LowDiscrepancySequence_initialize(self, *args)

    def getDimension(self):
        """getDimension(LowDiscrepancySequence self) -> OT::UnsignedLong"""
        return _statistics.LowDiscrepancySequence_getDimension(self)

    def generate(self, *args):
        """
        generate(LowDiscrepancySequence self) -> NumericalPoint
        generate(LowDiscrepancySequence self, OT::UnsignedLong const size) -> NumericalSample
        """
        return _statistics.LowDiscrepancySequence_generate(self, *args)

    def computeStarDiscrepancy(self, *args):
        """computeStarDiscrepancy(LowDiscrepancySequence self, NumericalSample sample) -> OT::NumericalScalar"""
        return _statistics.LowDiscrepancySequence_computeStarDiscrepancy(self, *args)

    def __repr__(self):
        """__repr__(LowDiscrepancySequence self) -> OT::String"""
        return _statistics.LowDiscrepancySequence___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::LowDiscrepancySequence self) -> LowDiscrepancySequence
        __init__(OT::LowDiscrepancySequence self, OT::UnsignedLong const dimension) -> LowDiscrepancySequence
        __init__(OT::LowDiscrepancySequence self, LowDiscrepancySequenceImplementation implementation) -> LowDiscrepancySequence
        __init__(OT::LowDiscrepancySequence self, OT::LowDiscrepancySequence::Implementation & p_implementation) -> LowDiscrepancySequence
        __init__(OT::LowDiscrepancySequence self, LowDiscrepancySequence other) -> LowDiscrepancySequence
        """
        this = _statistics.new_LowDiscrepancySequence(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_LowDiscrepancySequence
    __del__ = lambda self : None;
LowDiscrepancySequence_swigregister = _statistics.LowDiscrepancySequence_swigregister
LowDiscrepancySequence_swigregister(LowDiscrepancySequence)

def LowDiscrepancySequence_GetClassName():
  """LowDiscrepancySequence_GetClassName() -> OT::String"""
  return _statistics.LowDiscrepancySequence_GetClassName()

class SobolSequence(LowDiscrepancySequenceImplementation):
    """Proxy of C++ OT::SobolSequence class"""
    __swig_setmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SobolSequence, name, value)
    __swig_getmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SobolSequence, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.SobolSequence_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SobolSequence self) -> OT::String"""
        return _statistics.SobolSequence_getClassName(self)

    def initialize(self, *args):
        """initialize(SobolSequence self, OT::UnsignedLong const dimension)"""
        return _statistics.SobolSequence_initialize(self, *args)

    def generate(self, *args):
        """
        generate(SobolSequence self, OT::UnsignedLong const size) -> NumericalSample
        generate(SobolSequence self) -> NumericalPoint
        """
        return _statistics.SobolSequence_generate(self, *args)

    def __repr__(self):
        """__repr__(SobolSequence self) -> OT::String"""
        return _statistics.SobolSequence___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::SobolSequence self, OT::UnsignedLong const dimension=1) -> SobolSequence
        __init__(OT::SobolSequence self) -> SobolSequence
        __init__(OT::SobolSequence self, SobolSequence other) -> SobolSequence
        """
        this = _statistics.new_SobolSequence(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SobolSequence
    __del__ = lambda self : None;
SobolSequence_swigregister = _statistics.SobolSequence_swigregister
SobolSequence_swigregister(SobolSequence)

def SobolSequence_GetClassName():
  """SobolSequence_GetClassName() -> OT::String"""
  return _statistics.SobolSequence_GetClassName()
cvar = _statistics.cvar
SobolSequence.MaximumNumberOfDimension = _statistics.cvar.SobolSequence_MaximumNumberOfDimension
SobolSequence.MaximumBase2Logarithm = _statistics.cvar.SobolSequence_MaximumBase2Logarithm
SobolSequence.Epsilon = _statistics.cvar.SobolSequence_Epsilon
SobolSequence.MaximumInitialDegree = _statistics.cvar.SobolSequence_MaximumInitialDegree
SobolSequence.InitialBase = _statistics.cvar.SobolSequence_InitialBase
SobolSequence.PrimitivePolynomial = _statistics.cvar.SobolSequence_PrimitivePolynomial

class FaureSequence(LowDiscrepancySequenceImplementation):
    """Proxy of C++ OT::FaureSequence class"""
    __swig_setmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, FaureSequence, name, value)
    __swig_getmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, FaureSequence, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.FaureSequence_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(FaureSequence self) -> OT::String"""
        return _statistics.FaureSequence_getClassName(self)

    def initialize(self, *args):
        """initialize(FaureSequence self, OT::UnsignedLong const dimension)"""
        return _statistics.FaureSequence_initialize(self, *args)

    def generate(self, *args):
        """
        generate(FaureSequence self, OT::UnsignedLong const size) -> NumericalSample
        generate(FaureSequence self) -> NumericalPoint
        """
        return _statistics.FaureSequence_generate(self, *args)

    def __repr__(self):
        """__repr__(FaureSequence self) -> OT::String"""
        return _statistics.FaureSequence___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::FaureSequence self, OT::UnsignedLong const dimension=1) -> FaureSequence
        __init__(OT::FaureSequence self) -> FaureSequence
        __init__(OT::FaureSequence self, FaureSequence other) -> FaureSequence
        """
        this = _statistics.new_FaureSequence(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_FaureSequence
    __del__ = lambda self : None;
FaureSequence_swigregister = _statistics.FaureSequence_swigregister
FaureSequence_swigregister(FaureSequence)

def FaureSequence_GetClassName():
  """FaureSequence_GetClassName() -> OT::String"""
  return _statistics.FaureSequence_GetClassName()

class HaltonSequence(LowDiscrepancySequenceImplementation):
    """Proxy of C++ OT::HaltonSequence class"""
    __swig_setmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, HaltonSequence, name, value)
    __swig_getmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, HaltonSequence, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.HaltonSequence_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(HaltonSequence self) -> OT::String"""
        return _statistics.HaltonSequence_getClassName(self)

    def initialize(self, *args):
        """initialize(HaltonSequence self, OT::UnsignedLong const dimension)"""
        return _statistics.HaltonSequence_initialize(self, *args)

    def generate(self, *args):
        """
        generate(HaltonSequence self, OT::UnsignedLong const size) -> NumericalSample
        generate(HaltonSequence self) -> NumericalPoint
        """
        return _statistics.HaltonSequence_generate(self, *args)

    def __repr__(self):
        """__repr__(HaltonSequence self) -> OT::String"""
        return _statistics.HaltonSequence___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(HaltonSequence self, OT::String const & offset="") -> OT::String
        __str__(HaltonSequence self) -> OT::String
        """
        return _statistics.HaltonSequence___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::HaltonSequence self, OT::UnsignedLong const dimension=1) -> HaltonSequence
        __init__(OT::HaltonSequence self) -> HaltonSequence
        __init__(OT::HaltonSequence self, HaltonSequence other) -> HaltonSequence
        """
        this = _statistics.new_HaltonSequence(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_HaltonSequence
    __del__ = lambda self : None;
HaltonSequence_swigregister = _statistics.HaltonSequence_swigregister
HaltonSequence_swigregister(HaltonSequence)

def HaltonSequence_GetClassName():
  """HaltonSequence_GetClassName() -> OT::String"""
  return _statistics.HaltonSequence_GetClassName()

class HaselgroveSequence(LowDiscrepancySequenceImplementation):
    """Proxy of C++ OT::HaselgroveSequence class"""
    __swig_setmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, HaselgroveSequence, name, value)
    __swig_getmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, HaselgroveSequence, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.HaselgroveSequence_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(HaselgroveSequence self) -> OT::String"""
        return _statistics.HaselgroveSequence_getClassName(self)

    def initialize(self, *args):
        """initialize(HaselgroveSequence self, OT::UnsignedLong const dimension)"""
        return _statistics.HaselgroveSequence_initialize(self, *args)

    def generate(self, *args):
        """
        generate(HaselgroveSequence self, OT::UnsignedLong const size) -> NumericalSample
        generate(HaselgroveSequence self) -> NumericalPoint
        """
        return _statistics.HaselgroveSequence_generate(self, *args)

    def __repr__(self):
        """__repr__(HaselgroveSequence self) -> OT::String"""
        return _statistics.HaselgroveSequence___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(HaselgroveSequence self, OT::String const & offset="") -> OT::String
        __str__(HaselgroveSequence self) -> OT::String
        """
        return _statistics.HaselgroveSequence___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::HaselgroveSequence self, OT::UnsignedLong const dimension=1) -> HaselgroveSequence
        __init__(OT::HaselgroveSequence self) -> HaselgroveSequence
        __init__(OT::HaselgroveSequence self, NumericalPoint base) -> HaselgroveSequence
        __init__(OT::HaselgroveSequence self, HaselgroveSequence other) -> HaselgroveSequence
        """
        this = _statistics.new_HaselgroveSequence(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_HaselgroveSequence
    __del__ = lambda self : None;
HaselgroveSequence_swigregister = _statistics.HaselgroveSequence_swigregister
HaselgroveSequence_swigregister(HaselgroveSequence)

def HaselgroveSequence_GetClassName():
  """HaselgroveSequence_GetClassName() -> OT::String"""
  return _statistics.HaselgroveSequence_GetClassName()

class ReverseHaltonSequence(LowDiscrepancySequenceImplementation):
    """Proxy of C++ OT::ReverseHaltonSequence class"""
    __swig_setmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ReverseHaltonSequence, name, value)
    __swig_getmethods__ = {}
    for _s in [LowDiscrepancySequenceImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ReverseHaltonSequence, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.ReverseHaltonSequence_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ReverseHaltonSequence self) -> OT::String"""
        return _statistics.ReverseHaltonSequence_getClassName(self)

    def initialize(self, *args):
        """initialize(ReverseHaltonSequence self, OT::UnsignedLong const dimension)"""
        return _statistics.ReverseHaltonSequence_initialize(self, *args)

    def generate(self, *args):
        """
        generate(ReverseHaltonSequence self, OT::UnsignedLong const size) -> NumericalSample
        generate(ReverseHaltonSequence self) -> NumericalPoint
        """
        return _statistics.ReverseHaltonSequence_generate(self, *args)

    def __repr__(self):
        """__repr__(ReverseHaltonSequence self) -> OT::String"""
        return _statistics.ReverseHaltonSequence___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::ReverseHaltonSequence self, OT::UnsignedLong const dimension=1) -> ReverseHaltonSequence
        __init__(OT::ReverseHaltonSequence self) -> ReverseHaltonSequence
        __init__(OT::ReverseHaltonSequence self, ReverseHaltonSequence other) -> ReverseHaltonSequence
        """
        this = _statistics.new_ReverseHaltonSequence(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_ReverseHaltonSequence
    __del__ = lambda self : None;
ReverseHaltonSequence_swigregister = _statistics.ReverseHaltonSequence_swigregister
ReverseHaltonSequence_swigregister(ReverseHaltonSequence)

def ReverseHaltonSequence_GetClassName():
  """ReverseHaltonSequence_GetClassName() -> OT::String"""
  return _statistics.ReverseHaltonSequence_GetClassName()

class CorrelationAnalysis(_object):
    """Proxy of C++ OT::CorrelationAnalysis class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, CorrelationAnalysis, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, CorrelationAnalysis, name)
    __repr__ = _swig_repr
    def PearsonCorrelation(*args):
        """
        PearsonCorrelation(NumericalSample inputSample, NumericalSample outputSample, OT::UnsignedLong const index=0) -> OT::NumericalScalar
        PearsonCorrelation(NumericalSample inputSample, NumericalSample outputSample) -> OT::NumericalScalar
        """
        return _statistics.CorrelationAnalysis_PearsonCorrelation(*args)

    if _newclass:PearsonCorrelation = staticmethod(PearsonCorrelation)
    __swig_getmethods__["PearsonCorrelation"] = lambda x: PearsonCorrelation
    def SpearmanCorrelation(*args):
        """
        SpearmanCorrelation(NumericalSample inputSample, NumericalSample outputSample, OT::UnsignedLong const index=0) -> OT::NumericalScalar
        SpearmanCorrelation(NumericalSample inputSample, NumericalSample outputSample) -> OT::NumericalScalar
        """
        return _statistics.CorrelationAnalysis_SpearmanCorrelation(*args)

    if _newclass:SpearmanCorrelation = staticmethod(SpearmanCorrelation)
    __swig_getmethods__["SpearmanCorrelation"] = lambda x: SpearmanCorrelation
    def SRC(*args):
        """SRC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
        return _statistics.CorrelationAnalysis_SRC(*args)

    if _newclass:SRC = staticmethod(SRC)
    __swig_getmethods__["SRC"] = lambda x: SRC
    def PCC(*args):
        """PCC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
        return _statistics.CorrelationAnalysis_PCC(*args)

    if _newclass:PCC = staticmethod(PCC)
    __swig_getmethods__["PCC"] = lambda x: PCC
    def SRRC(*args):
        """SRRC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
        return _statistics.CorrelationAnalysis_SRRC(*args)

    if _newclass:SRRC = staticmethod(SRRC)
    __swig_getmethods__["SRRC"] = lambda x: SRRC
    def PRCC(*args):
        """PRCC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
        return _statistics.CorrelationAnalysis_PRCC(*args)

    if _newclass:PRCC = staticmethod(PRCC)
    __swig_getmethods__["PRCC"] = lambda x: PRCC
    def __init__(self, *args): 
        """
        __init__(OT::CorrelationAnalysis self) -> CorrelationAnalysis
        __init__(OT::CorrelationAnalysis self, CorrelationAnalysis other) -> CorrelationAnalysis
        """
        this = _statistics.new_CorrelationAnalysis(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_CorrelationAnalysis
    __del__ = lambda self : None;
CorrelationAnalysis_swigregister = _statistics.CorrelationAnalysis_swigregister
CorrelationAnalysis_swigregister(CorrelationAnalysis)

def CorrelationAnalysis_PearsonCorrelation(*args):
  """
    PearsonCorrelation(NumericalSample inputSample, NumericalSample outputSample, OT::UnsignedLong const index=0) -> OT::NumericalScalar
    CorrelationAnalysis_PearsonCorrelation(NumericalSample inputSample, NumericalSample outputSample) -> OT::NumericalScalar
    """
  return _statistics.CorrelationAnalysis_PearsonCorrelation(*args)

def CorrelationAnalysis_SpearmanCorrelation(*args):
  """
    SpearmanCorrelation(NumericalSample inputSample, NumericalSample outputSample, OT::UnsignedLong const index=0) -> OT::NumericalScalar
    CorrelationAnalysis_SpearmanCorrelation(NumericalSample inputSample, NumericalSample outputSample) -> OT::NumericalScalar
    """
  return _statistics.CorrelationAnalysis_SpearmanCorrelation(*args)

def CorrelationAnalysis_SRC(*args):
  """CorrelationAnalysis_SRC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
  return _statistics.CorrelationAnalysis_SRC(*args)

def CorrelationAnalysis_PCC(*args):
  """CorrelationAnalysis_PCC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
  return _statistics.CorrelationAnalysis_PCC(*args)

def CorrelationAnalysis_SRRC(*args):
  """CorrelationAnalysis_SRRC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
  return _statistics.CorrelationAnalysis_SRRC(*args)

def CorrelationAnalysis_PRCC(*args):
  """CorrelationAnalysis_PRCC(NumericalSample inputSample, NumericalSample outputSample) -> NumericalPoint"""
  return _statistics.CorrelationAnalysis_PRCC(*args)

class SensitivityAnalysis(_object):
    """Proxy of C++ OT::SensitivityAnalysis class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SensitivityAnalysis, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SensitivityAnalysis, name)
    __repr__ = _swig_repr
    def getFirstOrderIndices(self, marginalIndex=0):
        """
        getFirstOrderIndices(SensitivityAnalysis self, OT::UnsignedLong const marginalIndex=0) -> NumericalPoint
        getFirstOrderIndices(SensitivityAnalysis self) -> NumericalPoint
        """
        return _statistics.SensitivityAnalysis_getFirstOrderIndices(self, marginalIndex)

    def getSecondOrderIndices(self, marginalIndex=0):
        """
        getSecondOrderIndices(SensitivityAnalysis self, OT::UnsignedLong const marginalIndex=0) -> SymmetricMatrix
        getSecondOrderIndices(SensitivityAnalysis self) -> SymmetricMatrix
        """
        return _statistics.SensitivityAnalysis_getSecondOrderIndices(self, marginalIndex)

    def getTotalOrderIndices(self, marginalIndex=0):
        """
        getTotalOrderIndices(SensitivityAnalysis self, OT::UnsignedLong marginalIndex=0) -> NumericalPoint
        getTotalOrderIndices(SensitivityAnalysis self) -> NumericalPoint
        """
        return _statistics.SensitivityAnalysis_getTotalOrderIndices(self, marginalIndex)

    def setBlockSize(self, *args):
        """setBlockSize(SensitivityAnalysis self, OT::UnsignedLong const blockSize)"""
        return _statistics.SensitivityAnalysis_setBlockSize(self, *args)

    def getBlockSize(self):
        """getBlockSize(SensitivityAnalysis self) -> OT::UnsignedLong"""
        return _statistics.SensitivityAnalysis_getBlockSize(self)

    def DrawImportanceFactors(*args):
        """
        DrawImportanceFactors(NumericalPointWithDescription importanceFactors, OT::String const & title="Importance Factors") -> Graph
        DrawImportanceFactors(NumericalPointWithDescription importanceFactors) -> Graph
        DrawImportanceFactors(NumericalPoint values, Description names, OT::String const & title="Importance Factors") -> Graph
        DrawImportanceFactors(NumericalPoint values, Description names) -> Graph
        """
        return _statistics.SensitivityAnalysis_DrawImportanceFactors(*args)

    if _newclass:DrawImportanceFactors = staticmethod(DrawImportanceFactors)
    __swig_getmethods__["DrawImportanceFactors"] = lambda x: DrawImportanceFactors
    def __init__(self, *args): 
        """
        __init__(OT::SensitivityAnalysis self, NumericalSample inputSample1, NumericalSample inputSample2, NumericalMathFunction model) -> SensitivityAnalysis
        __init__(OT::SensitivityAnalysis self, SensitivityAnalysis other) -> SensitivityAnalysis
        """
        this = _statistics.new_SensitivityAnalysis(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SensitivityAnalysis
    __del__ = lambda self : None;
SensitivityAnalysis_swigregister = _statistics.SensitivityAnalysis_swigregister
SensitivityAnalysis_swigregister(SensitivityAnalysis)

def SensitivityAnalysis_DrawImportanceFactors(*args):
  """
    DrawImportanceFactors(NumericalPointWithDescription importanceFactors, OT::String const & title="Importance Factors") -> Graph
    DrawImportanceFactors(NumericalPointWithDescription importanceFactors) -> Graph
    DrawImportanceFactors(NumericalPoint values, Description names, OT::String const & title="Importance Factors") -> Graph
    SensitivityAnalysis_DrawImportanceFactors(NumericalPoint values, Description names) -> Graph
    """
  return _statistics.SensitivityAnalysis_DrawImportanceFactors(*args)

class FilteringWindowsImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::FilteringWindowsImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, FilteringWindowsImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, FilteringWindowsImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.FilteringWindowsImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(FilteringWindowsImplementation self) -> OT::String"""
        return _statistics.FilteringWindowsImplementation_getClassName(self)

    def __call__(self, *args):
        """__call__(FilteringWindowsImplementation self, OT::NumericalScalar const t) -> OT::NumericalScalar"""
        return _statistics.FilteringWindowsImplementation___call__(self, *args)

    def __repr__(self):
        """__repr__(FilteringWindowsImplementation self) -> OT::String"""
        return _statistics.FilteringWindowsImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(FilteringWindowsImplementation self, OT::String const & offset="") -> OT::String
        __str__(FilteringWindowsImplementation self) -> OT::String
        """
        return _statistics.FilteringWindowsImplementation___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::FilteringWindowsImplementation self, OT::String const & name=DefaultName) -> FilteringWindowsImplementation
        __init__(OT::FilteringWindowsImplementation self) -> FilteringWindowsImplementation
        __init__(OT::FilteringWindowsImplementation self, FilteringWindowsImplementation other) -> FilteringWindowsImplementation
        """
        this = _statistics.new_FilteringWindowsImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_FilteringWindowsImplementation
    __del__ = lambda self : None;
FilteringWindowsImplementation_swigregister = _statistics.FilteringWindowsImplementation_swigregister
FilteringWindowsImplementation_swigregister(FilteringWindowsImplementation)

def FilteringWindowsImplementation_GetClassName():
  """FilteringWindowsImplementation_GetClassName() -> OT::String"""
  return _statistics.FilteringWindowsImplementation_GetClassName()

class FilteringWindowsImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::FilteringWindowsImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, FilteringWindowsImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, FilteringWindowsImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::FilteringWindowsImplementation)> self) -> FilteringWindowsImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::FilteringWindowsImplementation)> self, OT::TypedInterfaceObject< OT::FilteringWindowsImplementation >::Implementation const & impl) -> FilteringWindowsImplementationTypedInterfaceObject
        """
        this = _statistics.new_FilteringWindowsImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(FilteringWindowsImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::FilteringWindowsImplementation >::Implementation
        getImplementation(FilteringWindowsImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::FilteringWindowsImplementation >::Implementation const &
        """
        return _statistics.FilteringWindowsImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(FilteringWindowsImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.FilteringWindowsImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(FilteringWindowsImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.FilteringWindowsImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(FilteringWindowsImplementationTypedInterfaceObject self, FilteringWindowsImplementationTypedInterfaceObject other)"""
        return _statistics.FilteringWindowsImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(FilteringWindowsImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.FilteringWindowsImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(FilteringWindowsImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.FilteringWindowsImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(FilteringWindowsImplementationTypedInterfaceObject self, FilteringWindowsImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.FilteringWindowsImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_FilteringWindowsImplementationTypedInterfaceObject
    __del__ = lambda self : None;
FilteringWindowsImplementationTypedInterfaceObject_swigregister = _statistics.FilteringWindowsImplementationTypedInterfaceObject_swigregister
FilteringWindowsImplementationTypedInterfaceObject_swigregister(FilteringWindowsImplementationTypedInterfaceObject)

class FilteringWindows(FilteringWindowsImplementationTypedInterfaceObject):
    """Proxy of C++ OT::FilteringWindows class"""
    __swig_setmethods__ = {}
    for _s in [FilteringWindowsImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, FilteringWindows, name, value)
    __swig_getmethods__ = {}
    for _s in [FilteringWindowsImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, FilteringWindows, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.FilteringWindows_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(FilteringWindows self) -> OT::String"""
        return _statistics.FilteringWindows_getClassName(self)

    def __repr__(self):
        """__repr__(FilteringWindows self) -> OT::String"""
        return _statistics.FilteringWindows___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(FilteringWindows self, OT::String const & offset="") -> OT::String
        __str__(FilteringWindows self) -> OT::String
        """
        return _statistics.FilteringWindows___str__(self, offset)

    def __call__(self, *args):
        """__call__(FilteringWindows self, OT::NumericalScalar const t) -> OT::NumericalScalar"""
        return _statistics.FilteringWindows___call__(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::FilteringWindows self) -> FilteringWindows
        __init__(OT::FilteringWindows self, FilteringWindowsImplementation implementation, OT::String const & name=DefaultName) -> FilteringWindows
        __init__(OT::FilteringWindows self, FilteringWindowsImplementation implementation) -> FilteringWindows
        __init__(OT::FilteringWindows self, OT::TypedInterfaceObject< OT::FilteringWindowsImplementation >::Implementation const & p_implementation, 
            OT::String const & name=DefaultName) -> FilteringWindows
        __init__(OT::FilteringWindows self, OT::TypedInterfaceObject< OT::FilteringWindowsImplementation >::Implementation const & p_implementation) -> FilteringWindows
        __init__(OT::FilteringWindows self, FilteringWindows other) -> FilteringWindows
        """
        this = _statistics.new_FilteringWindows(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_FilteringWindows
    __del__ = lambda self : None;
FilteringWindows_swigregister = _statistics.FilteringWindows_swigregister
FilteringWindows_swigregister(FilteringWindows)

def FilteringWindows_GetClassName():
  """FilteringWindows_GetClassName() -> OT::String"""
  return _statistics.FilteringWindows_GetClassName()

class Hamming(FilteringWindowsImplementation):
    """Proxy of C++ OT::Hamming class"""
    __swig_setmethods__ = {}
    for _s in [FilteringWindowsImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Hamming, name, value)
    __swig_getmethods__ = {}
    for _s in [FilteringWindowsImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Hamming, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.Hamming_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Hamming self) -> OT::String"""
        return _statistics.Hamming_getClassName(self)

    def __repr__(self):
        """__repr__(Hamming self) -> OT::String"""
        return _statistics.Hamming___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Hamming self, OT::String const & offset="") -> OT::String
        __str__(Hamming self) -> OT::String
        """
        return _statistics.Hamming___str__(self, offset)

    def __call__(self, *args):
        """__call__(Hamming self, OT::NumericalScalar const t) -> OT::NumericalScalar"""
        return _statistics.Hamming___call__(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Hamming self, OT::String const & name=DefaultName) -> Hamming
        __init__(OT::Hamming self) -> Hamming
        __init__(OT::Hamming self, Hamming other) -> Hamming
        """
        this = _statistics.new_Hamming(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_Hamming
    __del__ = lambda self : None;
Hamming_swigregister = _statistics.Hamming_swigregister
Hamming_swigregister(Hamming)

def Hamming_GetClassName():
  """Hamming_GetClassName() -> OT::String"""
  return _statistics.Hamming_GetClassName()

class Hanning(FilteringWindowsImplementation):
    """Proxy of C++ OT::Hanning class"""
    __swig_setmethods__ = {}
    for _s in [FilteringWindowsImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Hanning, name, value)
    __swig_getmethods__ = {}
    for _s in [FilteringWindowsImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Hanning, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.Hanning_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Hanning self) -> OT::String"""
        return _statistics.Hanning_getClassName(self)

    def __repr__(self):
        """__repr__(Hanning self) -> OT::String"""
        return _statistics.Hanning___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Hanning self, OT::String const & offset="") -> OT::String
        __str__(Hanning self) -> OT::String
        """
        return _statistics.Hanning___str__(self, offset)

    def __call__(self, *args):
        """__call__(Hanning self, OT::NumericalScalar const t) -> OT::NumericalScalar"""
        return _statistics.Hanning___call__(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Hanning self, OT::String const & name=DefaultName) -> Hanning
        __init__(OT::Hanning self) -> Hanning
        __init__(OT::Hanning self, Hanning other) -> Hanning
        """
        this = _statistics.new_Hanning(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_Hanning
    __del__ = lambda self : None;
Hanning_swigregister = _statistics.Hanning_swigregister
Hanning_swigregister(Hanning)

def Hanning_GetClassName():
  """Hanning_GetClassName() -> OT::String"""
  return _statistics.Hanning_GetClassName()

class FFTImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::FFTImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, FFTImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, FFTImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.FFTImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(FFTImplementation self) -> OT::String"""
        return _statistics.FFTImplementation_getClassName(self)

    def transform(self, *args):
        """
        transform(FFTImplementation self, NumericalScalarCollection collection) -> NumericalComplexCollection
        transform(FFTImplementation self, NumericalComplexCollection collection) -> NumericalComplexCollection
        transform(FFTImplementation self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        transform(FFTImplementation self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const step, 
            OT::UnsignedLong const last) -> NumericalComplexCollection
        """
        return _statistics.FFTImplementation_transform(self, *args)

    def inverseTransform(self, *args):
        """
        inverseTransform(FFTImplementation self, NumericalComplexCollection collection) -> NumericalComplexCollection
        inverseTransform(FFTImplementation self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        inverseTransform(FFTImplementation self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const step, 
            OT::UnsignedLong const last) -> NumericalComplexCollection
        """
        return _statistics.FFTImplementation_inverseTransform(self, *args)

    def __repr__(self):
        """__repr__(FFTImplementation self) -> OT::String"""
        return _statistics.FFTImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(FFTImplementation self, OT::String const & offset="") -> OT::String
        __str__(FFTImplementation self) -> OT::String
        """
        return _statistics.FFTImplementation___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::FFTImplementation self, OT::String const & name=DefaultName) -> FFTImplementation
        __init__(OT::FFTImplementation self) -> FFTImplementation
        __init__(OT::FFTImplementation self, FFTImplementation other) -> FFTImplementation
        """
        this = _statistics.new_FFTImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_FFTImplementation
    __del__ = lambda self : None;
FFTImplementation_swigregister = _statistics.FFTImplementation_swigregister
FFTImplementation_swigregister(FFTImplementation)

def FFTImplementation_GetClassName():
  """FFTImplementation_GetClassName() -> OT::String"""
  return _statistics.FFTImplementation_GetClassName()

class FFTImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::FFTImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, FFTImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, FFTImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::FFTImplementation)> self) -> FFTImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::FFTImplementation)> self, OT::TypedInterfaceObject< OT::FFTImplementation >::Implementation const & impl) -> FFTImplementationTypedInterfaceObject
        """
        this = _statistics.new_FFTImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(FFTImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::FFTImplementation >::Implementation
        getImplementation(FFTImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::FFTImplementation >::Implementation const &
        """
        return _statistics.FFTImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(FFTImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.FFTImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(FFTImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.FFTImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(FFTImplementationTypedInterfaceObject self, FFTImplementationTypedInterfaceObject other)"""
        return _statistics.FFTImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(FFTImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.FFTImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(FFTImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.FFTImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(FFTImplementationTypedInterfaceObject self, FFTImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.FFTImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_FFTImplementationTypedInterfaceObject
    __del__ = lambda self : None;
FFTImplementationTypedInterfaceObject_swigregister = _statistics.FFTImplementationTypedInterfaceObject_swigregister
FFTImplementationTypedInterfaceObject_swigregister(FFTImplementationTypedInterfaceObject)

class FFT(FFTImplementationTypedInterfaceObject):
    """Proxy of C++ OT::FFT class"""
    __swig_setmethods__ = {}
    for _s in [FFTImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, FFT, name, value)
    __swig_getmethods__ = {}
    for _s in [FFTImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, FFT, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.FFT_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(FFT self) -> OT::String"""
        return _statistics.FFT_getClassName(self)

    def transform(self, *args):
        """
        transform(FFT self, NumericalScalarCollection collection) -> NumericalComplexCollection
        transform(FFT self, NumericalComplexCollection collection) -> NumericalComplexCollection
        transform(FFT self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        transform(FFT self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const step, 
            OT::UnsignedLong const last) -> NumericalComplexCollection
        """
        return _statistics.FFT_transform(self, *args)

    def inverseTransform(self, *args):
        """
        inverseTransform(FFT self, NumericalComplexCollection collection) -> NumericalComplexCollection
        inverseTransform(FFT self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        inverseTransform(FFT self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const step, 
            OT::UnsignedLong const last) -> NumericalComplexCollection
        """
        return _statistics.FFT_inverseTransform(self, *args)

    def __repr__(self):
        """__repr__(FFT self) -> OT::String"""
        return _statistics.FFT___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(FFT self, OT::String const & offset="") -> OT::String
        __str__(FFT self) -> OT::String
        """
        return _statistics.FFT___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::FFT self) -> FFT
        __init__(OT::FFT self, FFTImplementation implementation, OT::String const & name=DefaultName) -> FFT
        __init__(OT::FFT self, FFTImplementation implementation) -> FFT
        __init__(OT::FFT self, OT::FFT::Implementation const & p_implementation, OT::String const & name=DefaultName) -> FFT
        __init__(OT::FFT self, OT::FFT::Implementation const & p_implementation) -> FFT
        __init__(OT::FFT self, FFT other) -> FFT
        """
        this = _statistics.new_FFT(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_FFT
    __del__ = lambda self : None;
FFT_swigregister = _statistics.FFT_swigregister
FFT_swigregister(FFT)

def FFT_GetClassName():
  """FFT_GetClassName() -> OT::String"""
  return _statistics.FFT_GetClassName()

class SpectralModelImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::SpectralModelImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SpectralModelImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SpectralModelImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.SpectralModelImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SpectralModelImplementation self) -> OT::String"""
        return _statistics.SpectralModelImplementation_getClassName(self)

    def getDimension(self):
        """getDimension(SpectralModelImplementation self) -> OT::UnsignedLong"""
        return _statistics.SpectralModelImplementation_getDimension(self)

    def setDimension(self, *args):
        """setDimension(SpectralModelImplementation self, OT::UnsignedLong const dimension)"""
        return _statistics.SpectralModelImplementation_setDimension(self, *args)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(SpectralModelImplementation self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.SpectralModelImplementation_computeSpectralDensity(self, *args)

    def getFrequencyGrid(self):
        """getFrequencyGrid(SpectralModelImplementation self) -> RegularGrid"""
        return _statistics.SpectralModelImplementation_getFrequencyGrid(self)

    def setFrequencyGrid(self, *args):
        """setFrequencyGrid(SpectralModelImplementation self, RegularGrid frequencyGrid)"""
        return _statistics.SpectralModelImplementation_setFrequencyGrid(self, *args)

    def __repr__(self):
        """__repr__(SpectralModelImplementation self) -> OT::String"""
        return _statistics.SpectralModelImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SpectralModelImplementation self, OT::String const & offset="") -> OT::String
        __str__(SpectralModelImplementation self) -> OT::String
        """
        return _statistics.SpectralModelImplementation___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::SpectralModelImplementation self, OT::String const & name=DefaultName) -> SpectralModelImplementation
        __init__(OT::SpectralModelImplementation self) -> SpectralModelImplementation
        __init__(OT::SpectralModelImplementation self, SpectralModelImplementation other) -> SpectralModelImplementation
        """
        this = _statistics.new_SpectralModelImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SpectralModelImplementation
    __del__ = lambda self : None;
SpectralModelImplementation_swigregister = _statistics.SpectralModelImplementation_swigregister
SpectralModelImplementation_swigregister(SpectralModelImplementation)

def SpectralModelImplementation_GetClassName():
  """SpectralModelImplementation_GetClassName() -> OT::String"""
  return _statistics.SpectralModelImplementation_GetClassName()

class SpectralModelImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::SpectralModelImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SpectralModelImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SpectralModelImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::SpectralModelImplementation)> self) -> SpectralModelImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::SpectralModelImplementation)> self, SpectralModelImplementationPointer impl) -> SpectralModelImplementationTypedInterfaceObject
        """
        this = _statistics.new_SpectralModelImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(SpectralModelImplementationTypedInterfaceObject self) -> SpectralModelImplementationPointer
        getImplementation(SpectralModelImplementationTypedInterfaceObject self) -> SpectralModelImplementationPointer
        """
        return _statistics.SpectralModelImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(SpectralModelImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.SpectralModelImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(SpectralModelImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.SpectralModelImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(SpectralModelImplementationTypedInterfaceObject self, SpectralModelImplementationTypedInterfaceObject other)"""
        return _statistics.SpectralModelImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(SpectralModelImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.SpectralModelImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(SpectralModelImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.SpectralModelImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(SpectralModelImplementationTypedInterfaceObject self, SpectralModelImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.SpectralModelImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_SpectralModelImplementationTypedInterfaceObject
    __del__ = lambda self : None;
SpectralModelImplementationTypedInterfaceObject_swigregister = _statistics.SpectralModelImplementationTypedInterfaceObject_swigregister
SpectralModelImplementationTypedInterfaceObject_swigregister(SpectralModelImplementationTypedInterfaceObject)

class SpectralModel(SpectralModelImplementationTypedInterfaceObject):
    """Proxy of C++ OT::SpectralModel class"""
    __swig_setmethods__ = {}
    for _s in [SpectralModelImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SpectralModel, name, value)
    __swig_getmethods__ = {}
    for _s in [SpectralModelImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SpectralModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.SpectralModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SpectralModel self) -> OT::String"""
        return _statistics.SpectralModel_getClassName(self)

    def getDimension(self):
        """getDimension(SpectralModel self) -> OT::UnsignedLong"""
        return _statistics.SpectralModel_getDimension(self)

    def setDimension(self, *args):
        """setDimension(SpectralModel self, OT::UnsignedLong const dimension)"""
        return _statistics.SpectralModel_setDimension(self, *args)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(SpectralModel self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.SpectralModel_computeSpectralDensity(self, *args)

    def getFrequencyGrid(self):
        """getFrequencyGrid(SpectralModel self) -> RegularGrid"""
        return _statistics.SpectralModel_getFrequencyGrid(self)

    def setFrequencyGrid(self, *args):
        """setFrequencyGrid(SpectralModel self, RegularGrid frequencyGrid)"""
        return _statistics.SpectralModel_setFrequencyGrid(self, *args)

    def __repr__(self):
        """__repr__(SpectralModel self) -> OT::String"""
        return _statistics.SpectralModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SpectralModel self, OT::String const & offset="") -> OT::String
        __str__(SpectralModel self) -> OT::String
        """
        return _statistics.SpectralModel___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::SpectralModel self, OT::String const & name=DefaultName) -> SpectralModel
        __init__(OT::SpectralModel self) -> SpectralModel
        __init__(OT::SpectralModel self, SpectralModelImplementation implementation, OT::String const & name=DefaultName) -> SpectralModel
        __init__(OT::SpectralModel self, SpectralModelImplementation implementation) -> SpectralModel
        __init__(OT::SpectralModel self, SpectralModelImplementationPointer p_implementation, OT::String const & name=DefaultName) -> SpectralModel
        __init__(OT::SpectralModel self, SpectralModelImplementationPointer p_implementation) -> SpectralModel
        __init__(OT::SpectralModel self, SpectralModel other) -> SpectralModel
        """
        this = _statistics.new_SpectralModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SpectralModel
    __del__ = lambda self : None;
SpectralModel_swigregister = _statistics.SpectralModel_swigregister
SpectralModel_swigregister(SpectralModel)

def SpectralModel_GetClassName():
  """SpectralModel_GetClassName() -> OT::String"""
  return _statistics.SpectralModel_GetClassName()

class CovarianceModelImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::CovarianceModelImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, CovarianceModelImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, CovarianceModelImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.CovarianceModelImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(CovarianceModelImplementation self) -> OT::String"""
        return _statistics.CovarianceModelImplementation_getClassName(self)

    def getDimension(self):
        """getDimension(CovarianceModelImplementation self) -> OT::UnsignedLong"""
        return _statistics.CovarianceModelImplementation_getDimension(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(CovarianceModelImplementation self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(CovarianceModelImplementation self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.CovarianceModelImplementation_computeCovariance(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(CovarianceModelImplementation self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.CovarianceModelImplementation_discretizeCovariance(self, *args)

    def isStationary(self):
        """isStationary(CovarianceModelImplementation self) -> OT::Bool"""
        return _statistics.CovarianceModelImplementation_isStationary(self)

    def __repr__(self):
        """__repr__(CovarianceModelImplementation self) -> OT::String"""
        return _statistics.CovarianceModelImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(CovarianceModelImplementation self, OT::String const & offset="") -> OT::String
        __str__(CovarianceModelImplementation self) -> OT::String
        """
        return _statistics.CovarianceModelImplementation___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::CovarianceModelImplementation self, OT::String const & name=DefaultName) -> CovarianceModelImplementation
        __init__(OT::CovarianceModelImplementation self) -> CovarianceModelImplementation
        __init__(OT::CovarianceModelImplementation self, OT::UnsignedLong const dimension, OT::String const & name=DefaultName) -> CovarianceModelImplementation
        __init__(OT::CovarianceModelImplementation self, OT::UnsignedLong const dimension) -> CovarianceModelImplementation
        __init__(OT::CovarianceModelImplementation self, CovarianceModelImplementation other) -> CovarianceModelImplementation
        """
        this = _statistics.new_CovarianceModelImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_CovarianceModelImplementation
    __del__ = lambda self : None;
CovarianceModelImplementation_swigregister = _statistics.CovarianceModelImplementation_swigregister
CovarianceModelImplementation_swigregister(CovarianceModelImplementation)

def CovarianceModelImplementation_GetClassName():
  """CovarianceModelImplementation_GetClassName() -> OT::String"""
  return _statistics.CovarianceModelImplementation_GetClassName()

class CovarianceModelImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::CovarianceModelImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, CovarianceModelImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, CovarianceModelImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::CovarianceModelImplementation)> self) -> CovarianceModelImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::CovarianceModelImplementation)> self, CovarianceModelImplementationPointer impl) -> CovarianceModelImplementationTypedInterfaceObject
        """
        this = _statistics.new_CovarianceModelImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(CovarianceModelImplementationTypedInterfaceObject self) -> CovarianceModelImplementationPointer
        getImplementation(CovarianceModelImplementationTypedInterfaceObject self) -> CovarianceModelImplementationPointer
        """
        return _statistics.CovarianceModelImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(CovarianceModelImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.CovarianceModelImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(CovarianceModelImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.CovarianceModelImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(CovarianceModelImplementationTypedInterfaceObject self, CovarianceModelImplementationTypedInterfaceObject other)"""
        return _statistics.CovarianceModelImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(CovarianceModelImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.CovarianceModelImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(CovarianceModelImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.CovarianceModelImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(CovarianceModelImplementationTypedInterfaceObject self, CovarianceModelImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_CovarianceModelImplementationTypedInterfaceObject
    __del__ = lambda self : None;
CovarianceModelImplementationTypedInterfaceObject_swigregister = _statistics.CovarianceModelImplementationTypedInterfaceObject_swigregister
CovarianceModelImplementationTypedInterfaceObject_swigregister(CovarianceModelImplementationTypedInterfaceObject)

class CovarianceModel(CovarianceModelImplementationTypedInterfaceObject):
    """Proxy of C++ OT::CovarianceModel class"""
    __swig_setmethods__ = {}
    for _s in [CovarianceModelImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, CovarianceModel, name, value)
    __swig_getmethods__ = {}
    for _s in [CovarianceModelImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, CovarianceModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.CovarianceModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(CovarianceModel self) -> OT::String"""
        return _statistics.CovarianceModel_getClassName(self)

    def getDimension(self):
        """getDimension(CovarianceModel self) -> OT::UnsignedLong"""
        return _statistics.CovarianceModel_getDimension(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(CovarianceModel self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(CovarianceModel self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.CovarianceModel_computeCovariance(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(CovarianceModel self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.CovarianceModel_discretizeCovariance(self, *args)

    def isStationary(self):
        """isStationary(CovarianceModel self) -> OT::Bool"""
        return _statistics.CovarianceModel_isStationary(self)

    def __repr__(self):
        """__repr__(CovarianceModel self) -> OT::String"""
        return _statistics.CovarianceModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(CovarianceModel self, OT::String const & offset="") -> OT::String
        __str__(CovarianceModel self) -> OT::String
        """
        return _statistics.CovarianceModel___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::CovarianceModel self, OT::String const & name=DefaultName) -> CovarianceModel
        __init__(OT::CovarianceModel self) -> CovarianceModel
        __init__(OT::CovarianceModel self, CovarianceModelImplementation implementation, OT::String const & name=DefaultName) -> CovarianceModel
        __init__(OT::CovarianceModel self, CovarianceModelImplementation implementation) -> CovarianceModel
        __init__(OT::CovarianceModel self, CovarianceModelImplementationPointer p_implementation, OT::String const & name=DefaultName) -> CovarianceModel
        __init__(OT::CovarianceModel self, CovarianceModelImplementationPointer p_implementation) -> CovarianceModel
        __init__(OT::CovarianceModel self, CovarianceModel other) -> CovarianceModel
        """
        this = _statistics.new_CovarianceModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_CovarianceModel
    __del__ = lambda self : None;
CovarianceModel_swigregister = _statistics.CovarianceModel_swigregister
CovarianceModel_swigregister(CovarianceModel)

def CovarianceModel_GetClassName():
  """CovarianceModel_GetClassName() -> OT::String"""
  return _statistics.CovarianceModel_GetClassName()

class StationaryCovarianceModel(CovarianceModelImplementation):
    """Proxy of C++ OT::StationaryCovarianceModel class"""
    __swig_setmethods__ = {}
    for _s in [CovarianceModelImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, StationaryCovarianceModel, name, value)
    __swig_getmethods__ = {}
    for _s in [CovarianceModelImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, StationaryCovarianceModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.StationaryCovarianceModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(StationaryCovarianceModel self) -> OT::String"""
        return _statistics.StationaryCovarianceModel_getClassName(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(StationaryCovarianceModel self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(StationaryCovarianceModel self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.StationaryCovarianceModel_computeCovariance(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(StationaryCovarianceModel self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.StationaryCovarianceModel_discretizeCovariance(self, *args)

    def isStationary(self):
        """isStationary(StationaryCovarianceModel self) -> OT::Bool"""
        return _statistics.StationaryCovarianceModel_isStationary(self)

    def __repr__(self):
        """__repr__(StationaryCovarianceModel self) -> OT::String"""
        return _statistics.StationaryCovarianceModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(StationaryCovarianceModel self, OT::String const & offset="") -> OT::String
        __str__(StationaryCovarianceModel self) -> OT::String
        """
        return _statistics.StationaryCovarianceModel___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::StationaryCovarianceModel self, OT::String const & name=DefaultName) -> StationaryCovarianceModel
        __init__(OT::StationaryCovarianceModel self) -> StationaryCovarianceModel
        __init__(OT::StationaryCovarianceModel self, StationaryCovarianceModel other) -> StationaryCovarianceModel
        """
        this = _statistics.new_StationaryCovarianceModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_StationaryCovarianceModel
    __del__ = lambda self : None;
StationaryCovarianceModel_swigregister = _statistics.StationaryCovarianceModel_swigregister
StationaryCovarianceModel_swigregister(StationaryCovarianceModel)

def StationaryCovarianceModel_GetClassName():
  """StationaryCovarianceModel_GetClassName() -> OT::String"""
  return _statistics.StationaryCovarianceModel_GetClassName()

class SecondOrderModelImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::SecondOrderModelImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SecondOrderModelImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SecondOrderModelImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.SecondOrderModelImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SecondOrderModelImplementation self) -> OT::String"""
        return _statistics.SecondOrderModelImplementation_getClassName(self)

    def getDimension(self):
        """getDimension(SecondOrderModelImplementation self) -> OT::UnsignedLong"""
        return _statistics.SecondOrderModelImplementation_getDimension(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(SecondOrderModelImplementation self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(SecondOrderModelImplementation self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.SecondOrderModelImplementation_computeCovariance(self, *args)

    def getSpectralModel(self):
        """getSpectralModel(SecondOrderModelImplementation self) -> SpectralModel"""
        return _statistics.SecondOrderModelImplementation_getSpectralModel(self)

    def getCovarianceModel(self):
        """getCovarianceModel(SecondOrderModelImplementation self) -> CovarianceModel"""
        return _statistics.SecondOrderModelImplementation_getCovarianceModel(self)

    def setModels(self, *args):
        """setModels(SecondOrderModelImplementation self, CovarianceModel covarianceModel, SpectralModel spectralModel)"""
        return _statistics.SecondOrderModelImplementation_setModels(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(SecondOrderModelImplementation self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.SecondOrderModelImplementation_discretizeCovariance(self, *args)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(SecondOrderModelImplementation self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.SecondOrderModelImplementation_computeSpectralDensity(self, *args)

    def __repr__(self):
        """__repr__(SecondOrderModelImplementation self) -> OT::String"""
        return _statistics.SecondOrderModelImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SecondOrderModelImplementation self, OT::String const & offset="") -> OT::String
        __str__(SecondOrderModelImplementation self) -> OT::String
        """
        return _statistics.SecondOrderModelImplementation___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::SecondOrderModelImplementation self, OT::String const & name=DefaultName) -> SecondOrderModelImplementation
        __init__(OT::SecondOrderModelImplementation self) -> SecondOrderModelImplementation
        __init__(OT::SecondOrderModelImplementation self, CovarianceModel covarianceModel, SpectralModel spectralModel, OT::String const & name=DefaultName) -> SecondOrderModelImplementation
        __init__(OT::SecondOrderModelImplementation self, CovarianceModel covarianceModel, SpectralModel spectralModel) -> SecondOrderModelImplementation
        __init__(OT::SecondOrderModelImplementation self, SecondOrderModelImplementation other) -> SecondOrderModelImplementation
        """
        this = _statistics.new_SecondOrderModelImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SecondOrderModelImplementation
    __del__ = lambda self : None;
SecondOrderModelImplementation_swigregister = _statistics.SecondOrderModelImplementation_swigregister
SecondOrderModelImplementation_swigregister(SecondOrderModelImplementation)

def SecondOrderModelImplementation_GetClassName():
  """SecondOrderModelImplementation_GetClassName() -> OT::String"""
  return _statistics.SecondOrderModelImplementation_GetClassName()

class ExponentialCauchy(SecondOrderModelImplementation):
    """Proxy of C++ OT::ExponentialCauchy class"""
    __swig_setmethods__ = {}
    for _s in [SecondOrderModelImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ExponentialCauchy, name, value)
    __swig_getmethods__ = {}
    for _s in [SecondOrderModelImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ExponentialCauchy, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.ExponentialCauchy_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ExponentialCauchy self) -> OT::String"""
        return _statistics.ExponentialCauchy_getClassName(self)

    def __repr__(self):
        """__repr__(ExponentialCauchy self) -> OT::String"""
        return _statistics.ExponentialCauchy___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ExponentialCauchy self, OT::String const & offset="") -> OT::String
        __str__(ExponentialCauchy self) -> OT::String
        """
        return _statistics.ExponentialCauchy___str__(self, offset)

    def getAmplitude(self):
        """getAmplitude(ExponentialCauchy self) -> NumericalPoint"""
        return _statistics.ExponentialCauchy_getAmplitude(self)

    def getScale(self):
        """getScale(ExponentialCauchy self) -> NumericalPoint"""
        return _statistics.ExponentialCauchy_getScale(self)

    def getSpatialCorrelation(self):
        """getSpatialCorrelation(ExponentialCauchy self) -> CorrelationMatrix"""
        return _statistics.ExponentialCauchy_getSpatialCorrelation(self)

    def __init__(self, *args): 
        """
        __init__(OT::ExponentialCauchy self, OT::String const & name=DefaultName) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self, NumericalPoint amplitude, NumericalPoint scale, OT::String const & name=DefaultName) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self, NumericalPoint amplitude, NumericalPoint scale) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self, NumericalPoint amplitude, NumericalPoint scale, CorrelationMatrix spatialCorrelation, 
            OT::String const & name=DefaultName) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self, NumericalPoint amplitude, NumericalPoint scale, CorrelationMatrix spatialCorrelation) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self, NumericalPoint scale, CovarianceMatrix spatialCovariance, OT::String const & name=DefaultName) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self, NumericalPoint scale, CovarianceMatrix spatialCovariance) -> ExponentialCauchy
        __init__(OT::ExponentialCauchy self, ExponentialCauchy other) -> ExponentialCauchy
        """
        this = _statistics.new_ExponentialCauchy(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_ExponentialCauchy
    __del__ = lambda self : None;
ExponentialCauchy_swigregister = _statistics.ExponentialCauchy_swigregister
ExponentialCauchy_swigregister(ExponentialCauchy)

def ExponentialCauchy_GetClassName():
  """ExponentialCauchy_GetClassName() -> OT::String"""
  return _statistics.ExponentialCauchy_GetClassName()

class SecondOrderModelImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::SecondOrderModelImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SecondOrderModelImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SecondOrderModelImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::SecondOrderModelImplementation)> self) -> SecondOrderModelImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::SecondOrderModelImplementation)> self, SecondOrderModelImplementationPointer impl) -> SecondOrderModelImplementationTypedInterfaceObject
        """
        this = _statistics.new_SecondOrderModelImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(SecondOrderModelImplementationTypedInterfaceObject self) -> SecondOrderModelImplementationPointer
        getImplementation(SecondOrderModelImplementationTypedInterfaceObject self) -> SecondOrderModelImplementationPointer
        """
        return _statistics.SecondOrderModelImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(SecondOrderModelImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.SecondOrderModelImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(SecondOrderModelImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.SecondOrderModelImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(SecondOrderModelImplementationTypedInterfaceObject self, SecondOrderModelImplementationTypedInterfaceObject other)"""
        return _statistics.SecondOrderModelImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(SecondOrderModelImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.SecondOrderModelImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(SecondOrderModelImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.SecondOrderModelImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(SecondOrderModelImplementationTypedInterfaceObject self, SecondOrderModelImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_SecondOrderModelImplementationTypedInterfaceObject
    __del__ = lambda self : None;
SecondOrderModelImplementationTypedInterfaceObject_swigregister = _statistics.SecondOrderModelImplementationTypedInterfaceObject_swigregister
SecondOrderModelImplementationTypedInterfaceObject_swigregister(SecondOrderModelImplementationTypedInterfaceObject)

class SecondOrderModel(SecondOrderModelImplementationTypedInterfaceObject):
    """Proxy of C++ OT::SecondOrderModel class"""
    __swig_setmethods__ = {}
    for _s in [SecondOrderModelImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SecondOrderModel, name, value)
    __swig_getmethods__ = {}
    for _s in [SecondOrderModelImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SecondOrderModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.SecondOrderModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SecondOrderModel self) -> OT::String"""
        return _statistics.SecondOrderModel_getClassName(self)

    def getDimension(self):
        """getDimension(SecondOrderModel self) -> OT::UnsignedLong"""
        return _statistics.SecondOrderModel_getDimension(self)

    def getSpectralModel(self):
        """getSpectralModel(SecondOrderModel self) -> SpectralModel"""
        return _statistics.SecondOrderModel_getSpectralModel(self)

    def getCovarianceModel(self):
        """getCovarianceModel(SecondOrderModel self) -> CovarianceModel"""
        return _statistics.SecondOrderModel_getCovarianceModel(self)

    def setModels(self, *args):
        """setModels(SecondOrderModel self, CovarianceModel covarianceModel, SpectralModel spectralModel)"""
        return _statistics.SecondOrderModel_setModels(self, *args)

    def computeCovariance(self, *args):
        """
        computeCovariance(SecondOrderModel self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(SecondOrderModel self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.SecondOrderModel_computeCovariance(self, *args)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(SecondOrderModel self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.SecondOrderModel_computeSpectralDensity(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(SecondOrderModel self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.SecondOrderModel_discretizeCovariance(self, *args)

    def __repr__(self):
        """__repr__(SecondOrderModel self) -> OT::String"""
        return _statistics.SecondOrderModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SecondOrderModel self, OT::String const & offset="") -> OT::String
        __str__(SecondOrderModel self) -> OT::String
        """
        return _statistics.SecondOrderModel___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::SecondOrderModel self) -> SecondOrderModel
        __init__(OT::SecondOrderModel self, SecondOrderModelImplementation implementation, OT::String const & name=DefaultName) -> SecondOrderModel
        __init__(OT::SecondOrderModel self, SecondOrderModelImplementation implementation) -> SecondOrderModel
        __init__(OT::SecondOrderModel self, SecondOrderModelImplementationPointer p_implementation, OT::String const & name=DefaultName) -> SecondOrderModel
        __init__(OT::SecondOrderModel self, SecondOrderModelImplementationPointer p_implementation) -> SecondOrderModel
        __init__(OT::SecondOrderModel self, CovarianceModel covarianceModel, SpectralModel spectralModel, OT::String const & name=DefaultName) -> SecondOrderModel
        __init__(OT::SecondOrderModel self, CovarianceModel covarianceModel, SpectralModel spectralModel) -> SecondOrderModel
        __init__(OT::SecondOrderModel self, SecondOrderModel other) -> SecondOrderModel
        """
        this = _statistics.new_SecondOrderModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SecondOrderModel
    __del__ = lambda self : None;
SecondOrderModel_swigregister = _statistics.SecondOrderModel_swigregister
SecondOrderModel_swigregister(SecondOrderModel)

def SecondOrderModel_GetClassName():
  """SecondOrderModel_GetClassName() -> OT::String"""
  return _statistics.SecondOrderModel_GetClassName()

class SpectralModelFactoryImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::SpectralModelFactoryImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SpectralModelFactoryImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SpectralModelFactoryImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.SpectralModelFactoryImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SpectralModelFactoryImplementation self) -> OT::String"""
        return _statistics.SpectralModelFactoryImplementation_getClassName(self)

    def getFrequencyGrid(self):
        """getFrequencyGrid(SpectralModelFactoryImplementation self) -> RegularGrid"""
        return _statistics.SpectralModelFactoryImplementation_getFrequencyGrid(self)

    def setFrequencyGrid(self, *args):
        """setFrequencyGrid(SpectralModelFactoryImplementation self, RegularGrid grid)"""
        return _statistics.SpectralModelFactoryImplementation_setFrequencyGrid(self, *args)

    def getFFTAlgorithm(self):
        """getFFTAlgorithm(SpectralModelFactoryImplementation self) -> FFT"""
        return _statistics.SpectralModelFactoryImplementation_getFFTAlgorithm(self)

    def setFFTAlgorithm(self, *args):
        """setFFTAlgorithm(SpectralModelFactoryImplementation self, FFT fft)"""
        return _statistics.SpectralModelFactoryImplementation_setFFTAlgorithm(self, *args)

    def __repr__(self):
        """__repr__(SpectralModelFactoryImplementation self) -> OT::String"""
        return _statistics.SpectralModelFactoryImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SpectralModelFactoryImplementation self, OT::String const & offset="") -> OT::String
        __str__(SpectralModelFactoryImplementation self) -> OT::String
        """
        return _statistics.SpectralModelFactoryImplementation___str__(self, offset)

    def build(self, *args):
        """
        build(SpectralModelFactoryImplementation self, ProcessSample sample) -> SpectralModelImplementation
        build(SpectralModelFactoryImplementation self, TimeSeries timeSerie) -> SpectralModelImplementation
        """
        return _statistics.SpectralModelFactoryImplementation_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::SpectralModelFactoryImplementation self, OT::String const & name=DefaultName) -> SpectralModelFactoryImplementation
        __init__(OT::SpectralModelFactoryImplementation self) -> SpectralModelFactoryImplementation
        __init__(OT::SpectralModelFactoryImplementation self, SpectralModelFactoryImplementation other) -> SpectralModelFactoryImplementation
        """
        this = _statistics.new_SpectralModelFactoryImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SpectralModelFactoryImplementation
    __del__ = lambda self : None;
SpectralModelFactoryImplementation_swigregister = _statistics.SpectralModelFactoryImplementation_swigregister
SpectralModelFactoryImplementation_swigregister(SpectralModelFactoryImplementation)

def SpectralModelFactoryImplementation_GetClassName():
  """SpectralModelFactoryImplementation_GetClassName() -> OT::String"""
  return _statistics.SpectralModelFactoryImplementation_GetClassName()

class SpectralModelFactoryImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::SpectralModelFactoryImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SpectralModelFactoryImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SpectralModelFactoryImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::SpectralModelFactoryImplementation)> self) -> SpectralModelFactoryImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::SpectralModelFactoryImplementation)> self, OT::TypedInterfaceObject< OT::SpectralModelFactoryImplementation >::Implementation const & impl) -> SpectralModelFactoryImplementationTypedInterfaceObject
        """
        this = _statistics.new_SpectralModelFactoryImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(SpectralModelFactoryImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::SpectralModelFactoryImplementation >::Implementation
        getImplementation(SpectralModelFactoryImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::SpectralModelFactoryImplementation >::Implementation const &
        """
        return _statistics.SpectralModelFactoryImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(SpectralModelFactoryImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.SpectralModelFactoryImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(SpectralModelFactoryImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.SpectralModelFactoryImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(SpectralModelFactoryImplementationTypedInterfaceObject self, SpectralModelFactoryImplementationTypedInterfaceObject other)"""
        return _statistics.SpectralModelFactoryImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(SpectralModelFactoryImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.SpectralModelFactoryImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(SpectralModelFactoryImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.SpectralModelFactoryImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(SpectralModelFactoryImplementationTypedInterfaceObject self, SpectralModelFactoryImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.SpectralModelFactoryImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_SpectralModelFactoryImplementationTypedInterfaceObject
    __del__ = lambda self : None;
SpectralModelFactoryImplementationTypedInterfaceObject_swigregister = _statistics.SpectralModelFactoryImplementationTypedInterfaceObject_swigregister
SpectralModelFactoryImplementationTypedInterfaceObject_swigregister(SpectralModelFactoryImplementationTypedInterfaceObject)

class SpectralModelFactory(SpectralModelFactoryImplementationTypedInterfaceObject):
    """Proxy of C++ OT::SpectralModelFactory class"""
    __swig_setmethods__ = {}
    for _s in [SpectralModelFactoryImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SpectralModelFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [SpectralModelFactoryImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SpectralModelFactory, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.SpectralModelFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SpectralModelFactory self) -> OT::String"""
        return _statistics.SpectralModelFactory_getClassName(self)

    def getFrequencyGrid(self):
        """getFrequencyGrid(SpectralModelFactory self) -> RegularGrid"""
        return _statistics.SpectralModelFactory_getFrequencyGrid(self)

    def setFrequencyGrid(self, *args):
        """setFrequencyGrid(SpectralModelFactory self, RegularGrid point)"""
        return _statistics.SpectralModelFactory_setFrequencyGrid(self, *args)

    def getFFTAlgorithm(self):
        """getFFTAlgorithm(SpectralModelFactory self) -> FFT"""
        return _statistics.SpectralModelFactory_getFFTAlgorithm(self)

    def setFFTAlgorithm(self, *args):
        """setFFTAlgorithm(SpectralModelFactory self, FFT fft)"""
        return _statistics.SpectralModelFactory_setFFTAlgorithm(self, *args)

    def __repr__(self):
        """__repr__(SpectralModelFactory self) -> OT::String"""
        return _statistics.SpectralModelFactory___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SpectralModelFactory self, OT::String const & offset="") -> OT::String
        __str__(SpectralModelFactory self) -> OT::String
        """
        return _statistics.SpectralModelFactory___str__(self, offset)

    def build(self, *args):
        """
        build(SpectralModelFactory self, ProcessSample sample) -> SpectralModel
        build(SpectralModelFactory self, TimeSeries timeSerie) -> SpectralModel
        """
        return _statistics.SpectralModelFactory_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::SpectralModelFactory self, OT::String const & name=DefaultName) -> SpectralModelFactory
        __init__(OT::SpectralModelFactory self) -> SpectralModelFactory
        __init__(OT::SpectralModelFactory self, SpectralModelFactoryImplementation implementation, OT::String const & name=DefaultName) -> SpectralModelFactory
        __init__(OT::SpectralModelFactory self, SpectralModelFactoryImplementation implementation) -> SpectralModelFactory
        __init__(OT::SpectralModelFactory self, OT::SpectralModelFactory::Implementation const & p_implementation, OT::String const & name=DefaultName) -> SpectralModelFactory
        __init__(OT::SpectralModelFactory self, OT::SpectralModelFactory::Implementation const & p_implementation) -> SpectralModelFactory
        __init__(OT::SpectralModelFactory self, SpectralModelFactory other) -> SpectralModelFactory
        """
        this = _statistics.new_SpectralModelFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SpectralModelFactory
    __del__ = lambda self : None;
SpectralModelFactory_swigregister = _statistics.SpectralModelFactory_swigregister
SpectralModelFactory_swigregister(SpectralModelFactory)

def SpectralModelFactory_GetClassName():
  """SpectralModelFactory_GetClassName() -> OT::String"""
  return _statistics.SpectralModelFactory_GetClassName()

class UserDefinedSpectralModel(SpectralModelImplementation):
    """Proxy of C++ OT::UserDefinedSpectralModel class"""
    __swig_setmethods__ = {}
    for _s in [SpectralModelImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, UserDefinedSpectralModel, name, value)
    __swig_getmethods__ = {}
    for _s in [SpectralModelImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, UserDefinedSpectralModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.UserDefinedSpectralModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(UserDefinedSpectralModel self) -> OT::String"""
        return _statistics.UserDefinedSpectralModel_getClassName(self)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(UserDefinedSpectralModel self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.UserDefinedSpectralModel_computeSpectralDensity(self, *args)

    def __repr__(self):
        """__repr__(UserDefinedSpectralModel self) -> OT::String"""
        return _statistics.UserDefinedSpectralModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(UserDefinedSpectralModel self, OT::String const & offset="") -> OT::String
        __str__(UserDefinedSpectralModel self) -> OT::String
        """
        return _statistics.UserDefinedSpectralModel___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::UserDefinedSpectralModel self, OT::String const & name=DefaultName) -> UserDefinedSpectralModel
        __init__(OT::UserDefinedSpectralModel self) -> UserDefinedSpectralModel
        __init__(OT::UserDefinedSpectralModel self, RegularGrid frequencyGrid, HermitianMatrixCollection spectralFunction, OT::String const & name=DefaultName) -> UserDefinedSpectralModel
        __init__(OT::UserDefinedSpectralModel self, RegularGrid frequencyGrid, HermitianMatrixCollection spectralFunction) -> UserDefinedSpectralModel
        __init__(OT::UserDefinedSpectralModel self, UserDefinedSpectralModel other) -> UserDefinedSpectralModel
        """
        this = _statistics.new_UserDefinedSpectralModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_UserDefinedSpectralModel
    __del__ = lambda self : None;
UserDefinedSpectralModel_swigregister = _statistics.UserDefinedSpectralModel_swigregister
UserDefinedSpectralModel_swigregister(UserDefinedSpectralModel)

def UserDefinedSpectralModel_GetClassName():
  """UserDefinedSpectralModel_GetClassName() -> OT::String"""
  return _statistics.UserDefinedSpectralModel_GetClassName()

class WelchFactory(SpectralModelFactoryImplementation):
    """Proxy of C++ OT::WelchFactory class"""
    __swig_setmethods__ = {}
    for _s in [SpectralModelFactoryImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, WelchFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [SpectralModelFactoryImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, WelchFactory, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.WelchFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(WelchFactory self) -> OT::String"""
        return _statistics.WelchFactory_getClassName(self)

    def __repr__(self):
        """__repr__(WelchFactory self) -> OT::String"""
        return _statistics.WelchFactory___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(WelchFactory self, OT::String const & offset="") -> OT::String
        __str__(WelchFactory self) -> OT::String
        """
        return _statistics.WelchFactory___str__(self, offset)

    def getFilteringWindows(self):
        """getFilteringWindows(WelchFactory self) -> FilteringWindows"""
        return _statistics.WelchFactory_getFilteringWindows(self)

    def setFilteringWindows(self, *args):
        """setFilteringWindows(WelchFactory self, FilteringWindows window)"""
        return _statistics.WelchFactory_setFilteringWindows(self, *args)

    def getBlockNumber(self):
        """getBlockNumber(WelchFactory self) -> OT::UnsignedLong"""
        return _statistics.WelchFactory_getBlockNumber(self)

    def setBlockNumber(self, *args):
        """setBlockNumber(WelchFactory self, OT::UnsignedLong const blockNumber)"""
        return _statistics.WelchFactory_setBlockNumber(self, *args)

    def getOverlap(self):
        """getOverlap(WelchFactory self) -> OT::NumericalScalar"""
        return _statistics.WelchFactory_getOverlap(self)

    def setOverlap(self, *args):
        """setOverlap(WelchFactory self, OT::NumericalScalar const overlap)"""
        return _statistics.WelchFactory_setOverlap(self, *args)

    def build(self, *args):
        """
        build(WelchFactory self, ProcessSample sample) -> UserDefinedSpectralModel
        build(WelchFactory self, TimeSeries timeSerie) -> UserDefinedSpectralModel
        """
        return _statistics.WelchFactory_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::WelchFactory self, OT::String const & name=DefaultName) -> WelchFactory
        __init__(OT::WelchFactory self) -> WelchFactory
        __init__(OT::WelchFactory self, FilteringWindows window, OT::UnsignedLong const blockNumber, OT::NumericalScalar const overlap=0.5, 
            OT::String const & name=DefaultName) -> WelchFactory
        __init__(OT::WelchFactory self, FilteringWindows window, OT::UnsignedLong const blockNumber, OT::NumericalScalar const overlap=0.5) -> WelchFactory
        __init__(OT::WelchFactory self, FilteringWindows window, OT::UnsignedLong const blockNumber) -> WelchFactory
        __init__(OT::WelchFactory self, WelchFactory other) -> WelchFactory
        """
        this = _statistics.new_WelchFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_WelchFactory
    __del__ = lambda self : None;
WelchFactory_swigregister = _statistics.WelchFactory_swigregister
WelchFactory_swigregister(WelchFactory)

def WelchFactory_GetClassName():
  """WelchFactory_GetClassName() -> OT::String"""
  return _statistics.WelchFactory_GetClassName()

class ExponentialModel(StationaryCovarianceModel):
    """Proxy of C++ OT::ExponentialModel class"""
    __swig_setmethods__ = {}
    for _s in [StationaryCovarianceModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ExponentialModel, name, value)
    __swig_getmethods__ = {}
    for _s in [StationaryCovarianceModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ExponentialModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.ExponentialModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ExponentialModel self) -> OT::String"""
        return _statistics.ExponentialModel_getClassName(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(ExponentialModel self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(ExponentialModel self, OT::NumericalScalar const tau) -> CovarianceMatrix
        computeCovariance(ExponentialModel self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.ExponentialModel_computeCovariance(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(ExponentialModel self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.ExponentialModel_discretizeCovariance(self, *args)

    def isStationary(self):
        """isStationary(ExponentialModel self) -> OT::Bool"""
        return _statistics.ExponentialModel_isStationary(self)

    def __repr__(self):
        """__repr__(ExponentialModel self) -> OT::String"""
        return _statistics.ExponentialModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ExponentialModel self, OT::String const & offset="") -> OT::String
        __str__(ExponentialModel self) -> OT::String
        """
        return _statistics.ExponentialModel___str__(self, offset)

    def getAmplitude(self):
        """getAmplitude(ExponentialModel self) -> NumericalPoint"""
        return _statistics.ExponentialModel_getAmplitude(self)

    def getScale(self):
        """getScale(ExponentialModel self) -> NumericalPoint"""
        return _statistics.ExponentialModel_getScale(self)

    def getSpatialCorrelation(self):
        """getSpatialCorrelation(ExponentialModel self) -> CorrelationMatrix"""
        return _statistics.ExponentialModel_getSpatialCorrelation(self)

    def __init__(self, *args): 
        """
        __init__(OT::ExponentialModel self, OT::String const & name=DefaultName) -> ExponentialModel
        __init__(OT::ExponentialModel self) -> ExponentialModel
        __init__(OT::ExponentialModel self, NumericalPoint amplitude, NumericalPoint scale, OT::String const & name=DefaultName) -> ExponentialModel
        __init__(OT::ExponentialModel self, NumericalPoint amplitude, NumericalPoint scale) -> ExponentialModel
        __init__(OT::ExponentialModel self, NumericalPoint amplitude, NumericalPoint scale, CorrelationMatrix spatialCorrelation, 
            OT::String const & name=DefaultName) -> ExponentialModel
        __init__(OT::ExponentialModel self, NumericalPoint amplitude, NumericalPoint scale, CorrelationMatrix spatialCorrelation) -> ExponentialModel
        __init__(OT::ExponentialModel self, NumericalPoint scale, CovarianceMatrix spatialCovariance, OT::String const & name=DefaultName) -> ExponentialModel
        __init__(OT::ExponentialModel self, NumericalPoint scale, CovarianceMatrix spatialCovariance) -> ExponentialModel
        __init__(OT::ExponentialModel self, ExponentialModel other) -> ExponentialModel
        """
        this = _statistics.new_ExponentialModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_ExponentialModel
    __del__ = lambda self : None;
ExponentialModel_swigregister = _statistics.ExponentialModel_swigregister
ExponentialModel_swigregister(ExponentialModel)

def ExponentialModel_GetClassName():
  """ExponentialModel_GetClassName() -> OT::String"""
  return _statistics.ExponentialModel_GetClassName()

class CauchyModel(SpectralModelImplementation):
    """Proxy of C++ OT::CauchyModel class"""
    __swig_setmethods__ = {}
    for _s in [SpectralModelImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, CauchyModel, name, value)
    __swig_getmethods__ = {}
    for _s in [SpectralModelImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, CauchyModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.CauchyModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(CauchyModel self) -> OT::String"""
        return _statistics.CauchyModel_getClassName(self)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(CauchyModel self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.CauchyModel_computeSpectralDensity(self, *args)

    def __repr__(self):
        """__repr__(CauchyModel self) -> OT::String"""
        return _statistics.CauchyModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(CauchyModel self, OT::String const & offset="") -> OT::String
        __str__(CauchyModel self) -> OT::String
        """
        return _statistics.CauchyModel___str__(self, offset)

    def getAmplitude(self):
        """getAmplitude(CauchyModel self) -> NumericalPoint"""
        return _statistics.CauchyModel_getAmplitude(self)

    def getScale(self):
        """getScale(CauchyModel self) -> NumericalPoint"""
        return _statistics.CauchyModel_getScale(self)

    def getSpatialCorrelation(self):
        """getSpatialCorrelation(CauchyModel self) -> CorrelationMatrix"""
        return _statistics.CauchyModel_getSpatialCorrelation(self)

    def __init__(self, *args): 
        """
        __init__(OT::CauchyModel self, OT::String const & name=DefaultName) -> CauchyModel
        __init__(OT::CauchyModel self) -> CauchyModel
        __init__(OT::CauchyModel self, NumericalPoint amplitude, NumericalPoint scale, OT::String const & name=DefaultName) -> CauchyModel
        __init__(OT::CauchyModel self, NumericalPoint amplitude, NumericalPoint scale) -> CauchyModel
        __init__(OT::CauchyModel self, NumericalPoint amplitude, NumericalPoint scale, CorrelationMatrix spatialCorrelation, 
            OT::String const & name=DefaultName) -> CauchyModel
        __init__(OT::CauchyModel self, NumericalPoint amplitude, NumericalPoint scale, CorrelationMatrix spatialCorrelation) -> CauchyModel
        __init__(OT::CauchyModel self, NumericalPoint scale, CovarianceMatrix spatialCovariance, OT::String const & name=DefaultName) -> CauchyModel
        __init__(OT::CauchyModel self, NumericalPoint scale, CovarianceMatrix spatialCovariance) -> CauchyModel
        __init__(OT::CauchyModel self, CauchyModel other) -> CauchyModel
        """
        this = _statistics.new_CauchyModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_CauchyModel
    __del__ = lambda self : None;
CauchyModel_swigregister = _statistics.CauchyModel_swigregister
CauchyModel_swigregister(CauchyModel)

def CauchyModel_GetClassName():
  """CauchyModel_GetClassName() -> OT::String"""
  return _statistics.CauchyModel_GetClassName()

class CovarianceModelFactoryImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::CovarianceModelFactoryImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, CovarianceModelFactoryImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, CovarianceModelFactoryImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.CovarianceModelFactoryImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(CovarianceModelFactoryImplementation self) -> OT::String"""
        return _statistics.CovarianceModelFactoryImplementation_getClassName(self)

    def __repr__(self):
        """__repr__(CovarianceModelFactoryImplementation self) -> OT::String"""
        return _statistics.CovarianceModelFactoryImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(CovarianceModelFactoryImplementation self, OT::String const & offset="") -> OT::String
        __str__(CovarianceModelFactoryImplementation self) -> OT::String
        """
        return _statistics.CovarianceModelFactoryImplementation___str__(self, offset)

    def build(self, *args):
        """
        build(CovarianceModelFactoryImplementation self, ProcessSample sample) -> CovarianceModelImplementation
        build(CovarianceModelFactoryImplementation self, TimeSeries timeSerie) -> CovarianceModelImplementation
        """
        return _statistics.CovarianceModelFactoryImplementation_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::CovarianceModelFactoryImplementation self, OT::String const & name=DefaultName) -> CovarianceModelFactoryImplementation
        __init__(OT::CovarianceModelFactoryImplementation self) -> CovarianceModelFactoryImplementation
        __init__(OT::CovarianceModelFactoryImplementation self, CovarianceModelFactoryImplementation other) -> CovarianceModelFactoryImplementation
        """
        this = _statistics.new_CovarianceModelFactoryImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_CovarianceModelFactoryImplementation
    __del__ = lambda self : None;
CovarianceModelFactoryImplementation_swigregister = _statistics.CovarianceModelFactoryImplementation_swigregister
CovarianceModelFactoryImplementation_swigregister(CovarianceModelFactoryImplementation)

def CovarianceModelFactoryImplementation_GetClassName():
  """CovarianceModelFactoryImplementation_GetClassName() -> OT::String"""
  return _statistics.CovarianceModelFactoryImplementation_GetClassName()

class CovarianceModelFactoryImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::CovarianceModelFactoryImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, CovarianceModelFactoryImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, CovarianceModelFactoryImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::CovarianceModelFactoryImplementation)> self) -> CovarianceModelFactoryImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::CovarianceModelFactoryImplementation)> self, OT::TypedInterfaceObject< OT::CovarianceModelFactoryImplementation >::Implementation const & impl) -> CovarianceModelFactoryImplementationTypedInterfaceObject
        """
        this = _statistics.new_CovarianceModelFactoryImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(CovarianceModelFactoryImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::CovarianceModelFactoryImplementation >::Implementation
        getImplementation(CovarianceModelFactoryImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::CovarianceModelFactoryImplementation >::Implementation const &
        """
        return _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(CovarianceModelFactoryImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(CovarianceModelFactoryImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(CovarianceModelFactoryImplementationTypedInterfaceObject self, CovarianceModelFactoryImplementationTypedInterfaceObject other)"""
        return _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(CovarianceModelFactoryImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(CovarianceModelFactoryImplementationTypedInterfaceObject self) -> OT::String"""
        return _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(CovarianceModelFactoryImplementationTypedInterfaceObject self, CovarianceModelFactoryImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _statistics.delete_CovarianceModelFactoryImplementationTypedInterfaceObject
    __del__ = lambda self : None;
CovarianceModelFactoryImplementationTypedInterfaceObject_swigregister = _statistics.CovarianceModelFactoryImplementationTypedInterfaceObject_swigregister
CovarianceModelFactoryImplementationTypedInterfaceObject_swigregister(CovarianceModelFactoryImplementationTypedInterfaceObject)

class CovarianceModelFactory(CovarianceModelFactoryImplementationTypedInterfaceObject):
    """Proxy of C++ OT::CovarianceModelFactory class"""
    __swig_setmethods__ = {}
    for _s in [CovarianceModelFactoryImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, CovarianceModelFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [CovarianceModelFactoryImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, CovarianceModelFactory, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.CovarianceModelFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(CovarianceModelFactory self) -> OT::String"""
        return _statistics.CovarianceModelFactory_getClassName(self)

    def __repr__(self):
        """__repr__(CovarianceModelFactory self) -> OT::String"""
        return _statistics.CovarianceModelFactory___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(CovarianceModelFactory self, OT::String const & offset="") -> OT::String
        __str__(CovarianceModelFactory self) -> OT::String
        """
        return _statistics.CovarianceModelFactory___str__(self, offset)

    def build(self, *args):
        """
        build(CovarianceModelFactory self, ProcessSample sample) -> CovarianceModel
        build(CovarianceModelFactory self, TimeSeries timeSerie) -> CovarianceModel
        """
        return _statistics.CovarianceModelFactory_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::CovarianceModelFactory self, OT::String const & name=DefaultName) -> CovarianceModelFactory
        __init__(OT::CovarianceModelFactory self) -> CovarianceModelFactory
        __init__(OT::CovarianceModelFactory self, CovarianceModelFactoryImplementation implementation, OT::String const & name=DefaultName) -> CovarianceModelFactory
        __init__(OT::CovarianceModelFactory self, CovarianceModelFactoryImplementation implementation) -> CovarianceModelFactory
        __init__(OT::CovarianceModelFactory self, OT::CovarianceModelFactory::Implementation const & p_implementation, OT::String const & name=DefaultName) -> CovarianceModelFactory
        __init__(OT::CovarianceModelFactory self, OT::CovarianceModelFactory::Implementation const & p_implementation) -> CovarianceModelFactory
        __init__(OT::CovarianceModelFactory self, CovarianceModelFactory other) -> CovarianceModelFactory
        """
        this = _statistics.new_CovarianceModelFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_CovarianceModelFactory
    __del__ = lambda self : None;
CovarianceModelFactory_swigregister = _statistics.CovarianceModelFactory_swigregister
CovarianceModelFactory_swigregister(CovarianceModelFactory)

def CovarianceModelFactory_GetClassName():
  """CovarianceModelFactory_GetClassName() -> OT::String"""
  return _statistics.CovarianceModelFactory_GetClassName()

class UserDefinedCovarianceModel(CovarianceModelImplementation):
    """Proxy of C++ OT::UserDefinedCovarianceModel class"""
    __swig_setmethods__ = {}
    for _s in [CovarianceModelImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, UserDefinedCovarianceModel, name, value)
    __swig_getmethods__ = {}
    for _s in [CovarianceModelImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, UserDefinedCovarianceModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.UserDefinedCovarianceModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(UserDefinedCovarianceModel self) -> OT::String"""
        return _statistics.UserDefinedCovarianceModel_getClassName(self)

    def computeCovariance(self, *args):
        """computeCovariance(UserDefinedCovarianceModel self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix"""
        return _statistics.UserDefinedCovarianceModel_computeCovariance(self, *args)

    def getTimeGrid(self):
        """getTimeGrid(UserDefinedCovarianceModel self) -> RegularGrid"""
        return _statistics.UserDefinedCovarianceModel_getTimeGrid(self)

    def __repr__(self):
        """__repr__(UserDefinedCovarianceModel self) -> OT::String"""
        return _statistics.UserDefinedCovarianceModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(UserDefinedCovarianceModel self, OT::String const & offset="") -> OT::String
        __str__(UserDefinedCovarianceModel self) -> OT::String
        """
        return _statistics.UserDefinedCovarianceModel___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::UserDefinedCovarianceModel self, OT::String const & name=DefaultName) -> UserDefinedCovarianceModel
        __init__(OT::UserDefinedCovarianceModel self) -> UserDefinedCovarianceModel
        __init__(OT::UserDefinedCovarianceModel self, RegularGrid timeGrid, CovarianceMatrixCollection spectralFunction, OT::String const & name=DefaultName) -> UserDefinedCovarianceModel
        __init__(OT::UserDefinedCovarianceModel self, RegularGrid timeGrid, CovarianceMatrixCollection spectralFunction) -> UserDefinedCovarianceModel
        __init__(OT::UserDefinedCovarianceModel self, UserDefinedCovarianceModel other) -> UserDefinedCovarianceModel
        """
        this = _statistics.new_UserDefinedCovarianceModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_UserDefinedCovarianceModel
    __del__ = lambda self : None;
UserDefinedCovarianceModel_swigregister = _statistics.UserDefinedCovarianceModel_swigregister
UserDefinedCovarianceModel_swigregister(UserDefinedCovarianceModel)

def UserDefinedCovarianceModel_GetClassName():
  """UserDefinedCovarianceModel_GetClassName() -> OT::String"""
  return _statistics.UserDefinedCovarianceModel_GetClassName()

class NonStationaryCovarianceModelFactory(CovarianceModelFactoryImplementation):
    """Proxy of C++ OT::NonStationaryCovarianceModelFactory class"""
    __swig_setmethods__ = {}
    for _s in [CovarianceModelFactoryImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, NonStationaryCovarianceModelFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [CovarianceModelFactoryImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, NonStationaryCovarianceModelFactory, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.NonStationaryCovarianceModelFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(NonStationaryCovarianceModelFactory self) -> OT::String"""
        return _statistics.NonStationaryCovarianceModelFactory_getClassName(self)

    def __repr__(self):
        """__repr__(NonStationaryCovarianceModelFactory self) -> OT::String"""
        return _statistics.NonStationaryCovarianceModelFactory___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(NonStationaryCovarianceModelFactory self, OT::String const & offset="") -> OT::String
        __str__(NonStationaryCovarianceModelFactory self) -> OT::String
        """
        return _statistics.NonStationaryCovarianceModelFactory___str__(self, offset)

    def build(self, *args):
        """
        build(NonStationaryCovarianceModelFactory self, ProcessSample sample) -> UserDefinedCovarianceModel
        build(NonStationaryCovarianceModelFactory self, TimeSeries timeSerie) -> UserDefinedCovarianceModel
        """
        return _statistics.NonStationaryCovarianceModelFactory_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::NonStationaryCovarianceModelFactory self, OT::String const & name=DefaultName) -> NonStationaryCovarianceModelFactory
        __init__(OT::NonStationaryCovarianceModelFactory self) -> NonStationaryCovarianceModelFactory
        __init__(OT::NonStationaryCovarianceModelFactory self, NonStationaryCovarianceModelFactory other) -> NonStationaryCovarianceModelFactory
        """
        this = _statistics.new_NonStationaryCovarianceModelFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_NonStationaryCovarianceModelFactory
    __del__ = lambda self : None;
NonStationaryCovarianceModelFactory_swigregister = _statistics.NonStationaryCovarianceModelFactory_swigregister
NonStationaryCovarianceModelFactory_swigregister(NonStationaryCovarianceModelFactory)

def NonStationaryCovarianceModelFactory_GetClassName():
  """NonStationaryCovarianceModelFactory_GetClassName() -> OT::String"""
  return _statistics.NonStationaryCovarianceModelFactory_GetClassName()

class UserDefinedStationaryCovarianceModel(StationaryCovarianceModel):
    """Proxy of C++ OT::UserDefinedStationaryCovarianceModel class"""
    __swig_setmethods__ = {}
    for _s in [StationaryCovarianceModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, UserDefinedStationaryCovarianceModel, name, value)
    __swig_getmethods__ = {}
    for _s in [StationaryCovarianceModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, UserDefinedStationaryCovarianceModel, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.UserDefinedStationaryCovarianceModel_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(UserDefinedStationaryCovarianceModel self) -> OT::String"""
        return _statistics.UserDefinedStationaryCovarianceModel_getClassName(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(UserDefinedStationaryCovarianceModel self, OT::NumericalScalar const t, OT::NumericalScalar const s) -> CovarianceMatrix
        computeCovariance(UserDefinedStationaryCovarianceModel self, OT::NumericalScalar const t) -> CovarianceMatrix
        """
        return _statistics.UserDefinedStationaryCovarianceModel_computeCovariance(self, *args)

    def getTimeGrid(self):
        """getTimeGrid(UserDefinedStationaryCovarianceModel self) -> RegularGrid"""
        return _statistics.UserDefinedStationaryCovarianceModel_getTimeGrid(self)

    def __repr__(self):
        """__repr__(UserDefinedStationaryCovarianceModel self) -> OT::String"""
        return _statistics.UserDefinedStationaryCovarianceModel___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(UserDefinedStationaryCovarianceModel self, OT::String const & offset="") -> OT::String
        __str__(UserDefinedStationaryCovarianceModel self) -> OT::String
        """
        return _statistics.UserDefinedStationaryCovarianceModel___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::UserDefinedStationaryCovarianceModel self, OT::String const & name=DefaultName) -> UserDefinedStationaryCovarianceModel
        __init__(OT::UserDefinedStationaryCovarianceModel self) -> UserDefinedStationaryCovarianceModel
        __init__(OT::UserDefinedStationaryCovarianceModel self, RegularGrid timeGrid, CovarianceMatrixCollection spectralFunction, OT::String const & name=DefaultName) -> UserDefinedStationaryCovarianceModel
        __init__(OT::UserDefinedStationaryCovarianceModel self, RegularGrid timeGrid, CovarianceMatrixCollection spectralFunction) -> UserDefinedStationaryCovarianceModel
        __init__(OT::UserDefinedStationaryCovarianceModel self, UserDefinedStationaryCovarianceModel other) -> UserDefinedStationaryCovarianceModel
        """
        this = _statistics.new_UserDefinedStationaryCovarianceModel(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_UserDefinedStationaryCovarianceModel
    __del__ = lambda self : None;
UserDefinedStationaryCovarianceModel_swigregister = _statistics.UserDefinedStationaryCovarianceModel_swigregister
UserDefinedStationaryCovarianceModel_swigregister(UserDefinedStationaryCovarianceModel)

def UserDefinedStationaryCovarianceModel_GetClassName():
  """UserDefinedStationaryCovarianceModel_GetClassName() -> OT::String"""
  return _statistics.UserDefinedStationaryCovarianceModel_GetClassName()

class StationaryCovarianceModelFactory(CovarianceModelFactoryImplementation):
    """Proxy of C++ OT::StationaryCovarianceModelFactory class"""
    __swig_setmethods__ = {}
    for _s in [CovarianceModelFactoryImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, StationaryCovarianceModelFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [CovarianceModelFactoryImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, StationaryCovarianceModelFactory, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _statistics.StationaryCovarianceModelFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(StationaryCovarianceModelFactory self) -> OT::String"""
        return _statistics.StationaryCovarianceModelFactory_getClassName(self)

    def getSpectralModelFactory(self):
        """getSpectralModelFactory(StationaryCovarianceModelFactory self) -> SpectralModelFactory"""
        return _statistics.StationaryCovarianceModelFactory_getSpectralModelFactory(self)

    def setSpectralModelFactory(self, *args):
        """setSpectralModelFactory(StationaryCovarianceModelFactory self, SpectralModelFactory factory)"""
        return _statistics.StationaryCovarianceModelFactory_setSpectralModelFactory(self, *args)

    def __repr__(self):
        """__repr__(StationaryCovarianceModelFactory self) -> OT::String"""
        return _statistics.StationaryCovarianceModelFactory___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(StationaryCovarianceModelFactory self, OT::String const & offset="") -> OT::String
        __str__(StationaryCovarianceModelFactory self) -> OT::String
        """
        return _statistics.StationaryCovarianceModelFactory___str__(self, offset)

    def build(self, *args):
        """
        build(StationaryCovarianceModelFactory self, ProcessSample sample) -> UserDefinedStationaryCovarianceModel
        build(StationaryCovarianceModelFactory self, TimeSeries timeSerie) -> UserDefinedStationaryCovarianceModel
        """
        return _statistics.StationaryCovarianceModelFactory_build(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::StationaryCovarianceModelFactory self, SpectralModelFactory factory=OT::WelchFactory(), OT::String const & name=DefaultName) -> StationaryCovarianceModelFactory
        __init__(OT::StationaryCovarianceModelFactory self, SpectralModelFactory factory=OT::WelchFactory()) -> StationaryCovarianceModelFactory
        __init__(OT::StationaryCovarianceModelFactory self) -> StationaryCovarianceModelFactory
        __init__(OT::StationaryCovarianceModelFactory self, StationaryCovarianceModelFactory other) -> StationaryCovarianceModelFactory
        """
        this = _statistics.new_StationaryCovarianceModelFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_StationaryCovarianceModelFactory
    __del__ = lambda self : None;
StationaryCovarianceModelFactory_swigregister = _statistics.StationaryCovarianceModelFactory_swigregister
StationaryCovarianceModelFactory_swigregister(StationaryCovarianceModelFactory)

def StationaryCovarianceModelFactory_GetClassName():
  """StationaryCovarianceModelFactory_GetClassName() -> OT::String"""
  return _statistics.StationaryCovarianceModelFactory_GetClassName()

class CovarianceModelImplementationPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::CovarianceModelImplementation)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, CovarianceModelImplementationPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, CovarianceModelImplementationPointer, name)
    __swig_setmethods__["ptr_"] = _statistics.CovarianceModelImplementationPointer_ptr__set
    __swig_getmethods__["ptr_"] = _statistics.CovarianceModelImplementationPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_statistics.CovarianceModelImplementationPointer_ptr__get, _statistics.CovarianceModelImplementationPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::CovarianceModelImplementation)> self) -> CovarianceModelImplementationPointer
        __init__(OT::Pointer<(OT::CovarianceModelImplementation)> self, CovarianceModelImplementation ptr) -> CovarianceModelImplementationPointer
        """
        this = _statistics.new_CovarianceModelImplementationPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_CovarianceModelImplementationPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(CovarianceModelImplementationPointer self)"""
        return _statistics.CovarianceModelImplementationPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(CovarianceModelImplementationPointer self) -> CovarianceModelImplementation
        __ref__(CovarianceModelImplementationPointer self) -> CovarianceModelImplementation
        """
        return _statistics.CovarianceModelImplementationPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(CovarianceModelImplementationPointer self) -> CovarianceModelImplementation"""
        return _statistics.CovarianceModelImplementationPointer___deref__(self)

    def isNull(self):
        """isNull(CovarianceModelImplementationPointer self) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer_isNull(self)

    def __nonzero__(self):
        return _statistics.CovarianceModelImplementationPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(CovarianceModelImplementationPointer self) -> CovarianceModelImplementation"""
        return _statistics.CovarianceModelImplementationPointer_get(self)

    def getImplementation(self):
        """getImplementation(CovarianceModelImplementationPointer self) -> OT::Pointer< OT::CovarianceModelImplementation >::pointer_type const &"""
        return _statistics.CovarianceModelImplementationPointer_getImplementation(self)

    def unique(self):
        """unique(CovarianceModelImplementationPointer self) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer_unique(self)

    def use_count(self):
        """use_count(CovarianceModelImplementationPointer self) -> OT::UnsignedLong"""
        return _statistics.CovarianceModelImplementationPointer_use_count(self)

    def swap(self, *args):
        """swap(CovarianceModelImplementationPointer self, CovarianceModelImplementationPointer other)"""
        return _statistics.CovarianceModelImplementationPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(CovarianceModelImplementationPointer self) -> OT::String"""
        return _statistics.CovarianceModelImplementationPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(CovarianceModelImplementationPointer self) -> OT::String"""
        return _statistics.CovarianceModelImplementationPointer_getClassName(self)

    def getDimension(self):
        """getDimension(CovarianceModelImplementationPointer self) -> OT::UnsignedLong"""
        return _statistics.CovarianceModelImplementationPointer_getDimension(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(CovarianceModelImplementationPointer self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(CovarianceModelImplementationPointer self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.CovarianceModelImplementationPointer_computeCovariance(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(CovarianceModelImplementationPointer self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.CovarianceModelImplementationPointer_discretizeCovariance(self, *args)

    def isStationary(self):
        """isStationary(CovarianceModelImplementationPointer self) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer_isStationary(self)

    def __repr__(self):
        """__repr__(CovarianceModelImplementationPointer self) -> OT::String"""
        return _statistics.CovarianceModelImplementationPointer___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(CovarianceModelImplementationPointer self, OT::String const & offset="") -> OT::String
        __str__(CovarianceModelImplementationPointer self) -> OT::String
        """
        return _statistics.CovarianceModelImplementationPointer___str__(self, offset)

    def __eq__(self, *args):
        """__eq__(CovarianceModelImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer___eq__(self, *args)

    def Is(self, *args):
        """Is(CovarianceModelImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer_Is(self, *args)

    def getId(self):
        """getId(CovarianceModelImplementationPointer self) -> OT::Id"""
        return _statistics.CovarianceModelImplementationPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(CovarianceModelImplementationPointer self, OT::Id id)"""
        return _statistics.CovarianceModelImplementationPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(CovarianceModelImplementationPointer self) -> OT::Id"""
        return _statistics.CovarianceModelImplementationPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(CovarianceModelImplementationPointer self, OT::Bool visible)"""
        return _statistics.CovarianceModelImplementationPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(CovarianceModelImplementationPointer self) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer_getVisibility(self)

    def hasName(self):
        """hasName(CovarianceModelImplementationPointer self) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(CovarianceModelImplementationPointer self) -> OT::Bool"""
        return _statistics.CovarianceModelImplementationPointer_hasVisibleName(self)

    def getName(self):
        """getName(CovarianceModelImplementationPointer self) -> OT::String"""
        return _statistics.CovarianceModelImplementationPointer_getName(self)

    def setName(self, *args):
        """setName(CovarianceModelImplementationPointer self, OT::String const & name)"""
        return _statistics.CovarianceModelImplementationPointer_setName(self, *args)

CovarianceModelImplementationPointer_swigregister = _statistics.CovarianceModelImplementationPointer_swigregister
CovarianceModelImplementationPointer_swigregister(CovarianceModelImplementationPointer)

class SpectralModelImplementationPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::SpectralModelImplementation)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SpectralModelImplementationPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SpectralModelImplementationPointer, name)
    __swig_setmethods__["ptr_"] = _statistics.SpectralModelImplementationPointer_ptr__set
    __swig_getmethods__["ptr_"] = _statistics.SpectralModelImplementationPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_statistics.SpectralModelImplementationPointer_ptr__get, _statistics.SpectralModelImplementationPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::SpectralModelImplementation)> self) -> SpectralModelImplementationPointer
        __init__(OT::Pointer<(OT::SpectralModelImplementation)> self, SpectralModelImplementation ptr) -> SpectralModelImplementationPointer
        """
        this = _statistics.new_SpectralModelImplementationPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SpectralModelImplementationPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(SpectralModelImplementationPointer self)"""
        return _statistics.SpectralModelImplementationPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(SpectralModelImplementationPointer self) -> SpectralModelImplementation
        __ref__(SpectralModelImplementationPointer self) -> SpectralModelImplementation
        """
        return _statistics.SpectralModelImplementationPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(SpectralModelImplementationPointer self) -> SpectralModelImplementation"""
        return _statistics.SpectralModelImplementationPointer___deref__(self)

    def isNull(self):
        """isNull(SpectralModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SpectralModelImplementationPointer_isNull(self)

    def __nonzero__(self):
        return _statistics.SpectralModelImplementationPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(SpectralModelImplementationPointer self) -> SpectralModelImplementation"""
        return _statistics.SpectralModelImplementationPointer_get(self)

    def getImplementation(self):
        """getImplementation(SpectralModelImplementationPointer self) -> OT::Pointer< OT::SpectralModelImplementation >::pointer_type const &"""
        return _statistics.SpectralModelImplementationPointer_getImplementation(self)

    def unique(self):
        """unique(SpectralModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SpectralModelImplementationPointer_unique(self)

    def use_count(self):
        """use_count(SpectralModelImplementationPointer self) -> OT::UnsignedLong"""
        return _statistics.SpectralModelImplementationPointer_use_count(self)

    def swap(self, *args):
        """swap(SpectralModelImplementationPointer self, SpectralModelImplementationPointer other)"""
        return _statistics.SpectralModelImplementationPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(SpectralModelImplementationPointer self) -> OT::String"""
        return _statistics.SpectralModelImplementationPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(SpectralModelImplementationPointer self) -> OT::String"""
        return _statistics.SpectralModelImplementationPointer_getClassName(self)

    def getDimension(self):
        """getDimension(SpectralModelImplementationPointer self) -> OT::UnsignedLong"""
        return _statistics.SpectralModelImplementationPointer_getDimension(self)

    def setDimension(self, *args):
        """setDimension(SpectralModelImplementationPointer self, OT::UnsignedLong const dimension)"""
        return _statistics.SpectralModelImplementationPointer_setDimension(self, *args)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(SpectralModelImplementationPointer self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.SpectralModelImplementationPointer_computeSpectralDensity(self, *args)

    def getFrequencyGrid(self):
        """getFrequencyGrid(SpectralModelImplementationPointer self) -> RegularGrid"""
        return _statistics.SpectralModelImplementationPointer_getFrequencyGrid(self)

    def setFrequencyGrid(self, *args):
        """setFrequencyGrid(SpectralModelImplementationPointer self, RegularGrid frequencyGrid)"""
        return _statistics.SpectralModelImplementationPointer_setFrequencyGrid(self, *args)

    def __repr__(self):
        """__repr__(SpectralModelImplementationPointer self) -> OT::String"""
        return _statistics.SpectralModelImplementationPointer___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SpectralModelImplementationPointer self, OT::String const & offset="") -> OT::String
        __str__(SpectralModelImplementationPointer self) -> OT::String
        """
        return _statistics.SpectralModelImplementationPointer___str__(self, offset)

    def __eq__(self, *args):
        """__eq__(SpectralModelImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.SpectralModelImplementationPointer___eq__(self, *args)

    def Is(self, *args):
        """Is(SpectralModelImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.SpectralModelImplementationPointer_Is(self, *args)

    def getId(self):
        """getId(SpectralModelImplementationPointer self) -> OT::Id"""
        return _statistics.SpectralModelImplementationPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(SpectralModelImplementationPointer self, OT::Id id)"""
        return _statistics.SpectralModelImplementationPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(SpectralModelImplementationPointer self) -> OT::Id"""
        return _statistics.SpectralModelImplementationPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(SpectralModelImplementationPointer self, OT::Bool visible)"""
        return _statistics.SpectralModelImplementationPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(SpectralModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SpectralModelImplementationPointer_getVisibility(self)

    def hasName(self):
        """hasName(SpectralModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SpectralModelImplementationPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(SpectralModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SpectralModelImplementationPointer_hasVisibleName(self)

    def getName(self):
        """getName(SpectralModelImplementationPointer self) -> OT::String"""
        return _statistics.SpectralModelImplementationPointer_getName(self)

    def setName(self, *args):
        """setName(SpectralModelImplementationPointer self, OT::String const & name)"""
        return _statistics.SpectralModelImplementationPointer_setName(self, *args)

SpectralModelImplementationPointer_swigregister = _statistics.SpectralModelImplementationPointer_swigregister
SpectralModelImplementationPointer_swigregister(SpectralModelImplementationPointer)

class SecondOrderModelImplementationPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::SecondOrderModelImplementation)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SecondOrderModelImplementationPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SecondOrderModelImplementationPointer, name)
    __swig_setmethods__["ptr_"] = _statistics.SecondOrderModelImplementationPointer_ptr__set
    __swig_getmethods__["ptr_"] = _statistics.SecondOrderModelImplementationPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_statistics.SecondOrderModelImplementationPointer_ptr__get, _statistics.SecondOrderModelImplementationPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::SecondOrderModelImplementation)> self) -> SecondOrderModelImplementationPointer
        __init__(OT::Pointer<(OT::SecondOrderModelImplementation)> self, SecondOrderModelImplementation ptr) -> SecondOrderModelImplementationPointer
        """
        this = _statistics.new_SecondOrderModelImplementationPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_SecondOrderModelImplementationPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(SecondOrderModelImplementationPointer self)"""
        return _statistics.SecondOrderModelImplementationPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(SecondOrderModelImplementationPointer self) -> SecondOrderModelImplementation
        __ref__(SecondOrderModelImplementationPointer self) -> SecondOrderModelImplementation
        """
        return _statistics.SecondOrderModelImplementationPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(SecondOrderModelImplementationPointer self) -> SecondOrderModelImplementation"""
        return _statistics.SecondOrderModelImplementationPointer___deref__(self)

    def isNull(self):
        """isNull(SecondOrderModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationPointer_isNull(self)

    def __nonzero__(self):
        return _statistics.SecondOrderModelImplementationPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(SecondOrderModelImplementationPointer self) -> SecondOrderModelImplementation"""
        return _statistics.SecondOrderModelImplementationPointer_get(self)

    def getImplementation(self):
        """getImplementation(SecondOrderModelImplementationPointer self) -> OT::Pointer< OT::SecondOrderModelImplementation >::pointer_type const &"""
        return _statistics.SecondOrderModelImplementationPointer_getImplementation(self)

    def unique(self):
        """unique(SecondOrderModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationPointer_unique(self)

    def use_count(self):
        """use_count(SecondOrderModelImplementationPointer self) -> OT::UnsignedLong"""
        return _statistics.SecondOrderModelImplementationPointer_use_count(self)

    def swap(self, *args):
        """swap(SecondOrderModelImplementationPointer self, SecondOrderModelImplementationPointer other)"""
        return _statistics.SecondOrderModelImplementationPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(SecondOrderModelImplementationPointer self) -> OT::String"""
        return _statistics.SecondOrderModelImplementationPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(SecondOrderModelImplementationPointer self) -> OT::String"""
        return _statistics.SecondOrderModelImplementationPointer_getClassName(self)

    def getDimension(self):
        """getDimension(SecondOrderModelImplementationPointer self) -> OT::UnsignedLong"""
        return _statistics.SecondOrderModelImplementationPointer_getDimension(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(SecondOrderModelImplementationPointer self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(SecondOrderModelImplementationPointer self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.SecondOrderModelImplementationPointer_computeCovariance(self, *args)

    def getSpectralModel(self):
        """getSpectralModel(SecondOrderModelImplementationPointer self) -> SpectralModel"""
        return _statistics.SecondOrderModelImplementationPointer_getSpectralModel(self)

    def getCovarianceModel(self):
        """getCovarianceModel(SecondOrderModelImplementationPointer self) -> CovarianceModel"""
        return _statistics.SecondOrderModelImplementationPointer_getCovarianceModel(self)

    def setModels(self, *args):
        """setModels(SecondOrderModelImplementationPointer self, CovarianceModel covarianceModel, SpectralModel spectralModel)"""
        return _statistics.SecondOrderModelImplementationPointer_setModels(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(SecondOrderModelImplementationPointer self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.SecondOrderModelImplementationPointer_discretizeCovariance(self, *args)

    def computeSpectralDensity(self, *args):
        """computeSpectralDensity(SecondOrderModelImplementationPointer self, OT::NumericalScalar const frequency) -> HermitianMatrix"""
        return _statistics.SecondOrderModelImplementationPointer_computeSpectralDensity(self, *args)

    def __repr__(self):
        """__repr__(SecondOrderModelImplementationPointer self) -> OT::String"""
        return _statistics.SecondOrderModelImplementationPointer___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(SecondOrderModelImplementationPointer self, OT::String const & offset="") -> OT::String
        __str__(SecondOrderModelImplementationPointer self) -> OT::String
        """
        return _statistics.SecondOrderModelImplementationPointer___str__(self, offset)

    def __eq__(self, *args):
        """__eq__(SecondOrderModelImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationPointer___eq__(self, *args)

    def Is(self, *args):
        """Is(SecondOrderModelImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationPointer_Is(self, *args)

    def getId(self):
        """getId(SecondOrderModelImplementationPointer self) -> OT::Id"""
        return _statistics.SecondOrderModelImplementationPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(SecondOrderModelImplementationPointer self, OT::Id id)"""
        return _statistics.SecondOrderModelImplementationPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(SecondOrderModelImplementationPointer self) -> OT::Id"""
        return _statistics.SecondOrderModelImplementationPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(SecondOrderModelImplementationPointer self, OT::Bool visible)"""
        return _statistics.SecondOrderModelImplementationPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(SecondOrderModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationPointer_getVisibility(self)

    def hasName(self):
        """hasName(SecondOrderModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(SecondOrderModelImplementationPointer self) -> OT::Bool"""
        return _statistics.SecondOrderModelImplementationPointer_hasVisibleName(self)

    def getName(self):
        """getName(SecondOrderModelImplementationPointer self) -> OT::String"""
        return _statistics.SecondOrderModelImplementationPointer_getName(self)

    def setName(self, *args):
        """setName(SecondOrderModelImplementationPointer self, OT::String const & name)"""
        return _statistics.SecondOrderModelImplementationPointer_setName(self, *args)

SecondOrderModelImplementationPointer_swigregister = _statistics.SecondOrderModelImplementationPointer_swigregister
SecondOrderModelImplementationPointer_swigregister(SecondOrderModelImplementationPointer)

class StationaryCovarianceModelPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::StationaryCovarianceModel)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, StationaryCovarianceModelPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, StationaryCovarianceModelPointer, name)
    __swig_setmethods__["ptr_"] = _statistics.StationaryCovarianceModelPointer_ptr__set
    __swig_getmethods__["ptr_"] = _statistics.StationaryCovarianceModelPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_statistics.StationaryCovarianceModelPointer_ptr__get, _statistics.StationaryCovarianceModelPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::StationaryCovarianceModel)> self) -> StationaryCovarianceModelPointer
        __init__(OT::Pointer<(OT::StationaryCovarianceModel)> self, StationaryCovarianceModel ptr) -> StationaryCovarianceModelPointer
        """
        this = _statistics.new_StationaryCovarianceModelPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _statistics.delete_StationaryCovarianceModelPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(StationaryCovarianceModelPointer self)"""
        return _statistics.StationaryCovarianceModelPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(StationaryCovarianceModelPointer self) -> StationaryCovarianceModel
        __ref__(StationaryCovarianceModelPointer self) -> StationaryCovarianceModel
        """
        return _statistics.StationaryCovarianceModelPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(StationaryCovarianceModelPointer self) -> StationaryCovarianceModel"""
        return _statistics.StationaryCovarianceModelPointer___deref__(self)

    def isNull(self):
        """isNull(StationaryCovarianceModelPointer self) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer_isNull(self)

    def __nonzero__(self):
        return _statistics.StationaryCovarianceModelPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(StationaryCovarianceModelPointer self) -> StationaryCovarianceModel"""
        return _statistics.StationaryCovarianceModelPointer_get(self)

    def getImplementation(self):
        """getImplementation(StationaryCovarianceModelPointer self) -> OT::Pointer< OT::StationaryCovarianceModel >::pointer_type const &"""
        return _statistics.StationaryCovarianceModelPointer_getImplementation(self)

    def unique(self):
        """unique(StationaryCovarianceModelPointer self) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer_unique(self)

    def use_count(self):
        """use_count(StationaryCovarianceModelPointer self) -> OT::UnsignedLong"""
        return _statistics.StationaryCovarianceModelPointer_use_count(self)

    def swap(self, *args):
        """swap(StationaryCovarianceModelPointer self, StationaryCovarianceModelPointer other)"""
        return _statistics.StationaryCovarianceModelPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(StationaryCovarianceModelPointer self) -> OT::String"""
        return _statistics.StationaryCovarianceModelPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(StationaryCovarianceModelPointer self) -> OT::String"""
        return _statistics.StationaryCovarianceModelPointer_getClassName(self)

    def computeCovariance(self, *args):
        """
        computeCovariance(StationaryCovarianceModelPointer self, OT::NumericalScalar const s, OT::NumericalScalar const t) -> CovarianceMatrix
        computeCovariance(StationaryCovarianceModelPointer self, OT::NumericalScalar const tau) -> CovarianceMatrix
        """
        return _statistics.StationaryCovarianceModelPointer_computeCovariance(self, *args)

    def discretizeCovariance(self, *args):
        """discretizeCovariance(StationaryCovarianceModelPointer self, RegularGrid timeGrid) -> CovarianceMatrix"""
        return _statistics.StationaryCovarianceModelPointer_discretizeCovariance(self, *args)

    def isStationary(self):
        """isStationary(StationaryCovarianceModelPointer self) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer_isStationary(self)

    def __repr__(self):
        """__repr__(StationaryCovarianceModelPointer self) -> OT::String"""
        return _statistics.StationaryCovarianceModelPointer___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(StationaryCovarianceModelPointer self, OT::String const & offset="") -> OT::String
        __str__(StationaryCovarianceModelPointer self) -> OT::String
        """
        return _statistics.StationaryCovarianceModelPointer___str__(self, offset)

    def getDimension(self):
        """getDimension(StationaryCovarianceModelPointer self) -> OT::UnsignedLong"""
        return _statistics.StationaryCovarianceModelPointer_getDimension(self)

    def __eq__(self, *args):
        """__eq__(StationaryCovarianceModelPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer___eq__(self, *args)

    def Is(self, *args):
        """Is(StationaryCovarianceModelPointer self, PersistentObject other) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer_Is(self, *args)

    def getId(self):
        """getId(StationaryCovarianceModelPointer self) -> OT::Id"""
        return _statistics.StationaryCovarianceModelPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(StationaryCovarianceModelPointer self, OT::Id id)"""
        return _statistics.StationaryCovarianceModelPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(StationaryCovarianceModelPointer self) -> OT::Id"""
        return _statistics.StationaryCovarianceModelPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(StationaryCovarianceModelPointer self, OT::Bool visible)"""
        return _statistics.StationaryCovarianceModelPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(StationaryCovarianceModelPointer self) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer_getVisibility(self)

    def hasName(self):
        """hasName(StationaryCovarianceModelPointer self) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(StationaryCovarianceModelPointer self) -> OT::Bool"""
        return _statistics.StationaryCovarianceModelPointer_hasVisibleName(self)

    def getName(self):
        """getName(StationaryCovarianceModelPointer self) -> OT::String"""
        return _statistics.StationaryCovarianceModelPointer_getName(self)

    def setName(self, *args):
        """setName(StationaryCovarianceModelPointer self, OT::String const & name)"""
        return _statistics.StationaryCovarianceModelPointer_setName(self, *args)

StationaryCovarianceModelPointer_swigregister = _statistics.StationaryCovarianceModelPointer_swigregister
StationaryCovarianceModelPointer_swigregister(StationaryCovarianceModelPointer)

# This file is compatible with both classic and new-style classes.