This file is indexed.

/usr/share/pyshared/openturns/dist_bundle2.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
# 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.


"""
Probabilistic distributions.
"""


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('_dist_bundle2', [dirname(__file__)])
        except ImportError:
            import _dist_bundle2
            return _dist_bundle2
        if fp is not None:
            try:
                _mod = imp.load_module('_dist_bundle2', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _dist_bundle2 = swig_import_helper()
    del swig_import_helper
else:
    import _dist_bundle2
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__ = _dist_bundle2.delete_SwigPyIterator
    __del__ = lambda self : None;
    def value(self):
        """value(SwigPyIterator self) -> PyObject *"""
        return _dist_bundle2.SwigPyIterator_value(self)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

GCC_VERSION = _dist_bundle2.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.typ
import openturns.wrapper
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 _dist_bundle2.TestResult_GetClassName()

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

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

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

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

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

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

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

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

    def __eq__(self, *args):
        """__eq__(TestResult self, TestResult other) -> OT::Bool"""
        return _dist_bundle2.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 = _dist_bundle2.new_TestResult(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_TestResult
    __del__ = lambda self : None;
TestResult_swigregister = _dist_bundle2.TestResult_swigregister
TestResult_swigregister(TestResult)

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

import openturns.base
import openturns.statistics
import openturns.graph
import openturns.func
import openturns.geom
import openturns.diff
import openturns.optim
import openturns.solver
import openturns.algo
import openturns.experiment
import openturns.model_copula
class HistogramPair(openturns.common.PersistentObject):
    """Proxy of C++ OT::HistogramPair class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, HistogramPair, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, HistogramPair, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.HistogramPair_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(HistogramPair self) -> OT::String"""
        return _dist_bundle2.HistogramPair_getClassName(self)

    def __eq__(self, *args):
        """__eq__(HistogramPair self, HistogramPair other) -> OT::Bool"""
        return _dist_bundle2.HistogramPair___eq__(self, *args)

    def setWidth(self, *args):
        """setWidth(HistogramPair self, OT::NumericalScalar const width)"""
        return _dist_bundle2.HistogramPair_setWidth(self, *args)

    def setHeight(self, *args):
        """setHeight(HistogramPair self, OT::NumericalScalar const height)"""
        return _dist_bundle2.HistogramPair_setHeight(self, *args)

    def getWidth(self):
        """getWidth(HistogramPair self) -> OT::NumericalScalar"""
        return _dist_bundle2.HistogramPair_getWidth(self)

    def getHeight(self):
        """getHeight(HistogramPair self) -> OT::NumericalScalar"""
        return _dist_bundle2.HistogramPair_getHeight(self)

    def getSurface(self):
        """getSurface(HistogramPair self) -> OT::NumericalScalar"""
        return _dist_bundle2.HistogramPair_getSurface(self)

    def __repr__(self):
        """__repr__(HistogramPair self) -> OT::String"""
        return _dist_bundle2.HistogramPair___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::HistogramPair self) -> HistogramPair
        __init__(OT::HistogramPair self, OT::NumericalScalar const width, OT::NumericalScalar const height) -> HistogramPair
        __init__(OT::HistogramPair self, HistogramPair other) -> HistogramPair
        """
        this = _dist_bundle2.new_HistogramPair(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_HistogramPair
    __del__ = lambda self : None;
HistogramPair_swigregister = _dist_bundle2.HistogramPair_swigregister
HistogramPair_swigregister(HistogramPair)

def HistogramPair_GetClassName():
  """HistogramPair_GetClassName() -> OT::String"""
  return _dist_bundle2.HistogramPair_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Histogram self) -> OT::String"""
        return _dist_bundle2.Histogram_getClassName(self)

    def __eq__(self, *args):
        """__eq__(Histogram self, Histogram other) -> OT::Bool"""
        return _dist_bundle2.Histogram___eq__(self, *args)

    def __repr__(self):
        """__repr__(Histogram self) -> OT::String"""
        return _dist_bundle2.Histogram___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Histogram self, OT::String const & offset="") -> OT::String
        __str__(Histogram self) -> OT::String
        """
        return _dist_bundle2.Histogram___str__(self, offset)

    def getRealization(self):
        """getRealization(Histogram self) -> NumericalPoint"""
        return _dist_bundle2.Histogram_getRealization(self)

    def computeDDF(self, *args):
        """
        computeDDF(Histogram self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeDDF(Histogram self, NumericalPoint point) -> NumericalPoint
        computeDDF(Histogram self, NumericalSample sample) -> NumericalSample
        computeDDF(Histogram self, NumericalPoint point) -> NumericalPoint
        """
        return _dist_bundle2.Histogram_computeDDF(self, *args)

    def computePDF(self, *args):
        """
        computePDF(Histogram self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(Histogram self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(Histogram self, NumericalSample sample) -> NumericalSample
        computePDF(Histogram self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Histogram self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(Histogram self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Histogram self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(Histogram self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Histogram_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(Histogram self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Histogram self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(Histogram self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Histogram self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(Histogram self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(Histogram self, NumericalSample sample) -> NumericalSample
        computeCDF(Histogram self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Histogram self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(Histogram self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Histogram self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(Histogram self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Histogram_computeCDF(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(Histogram self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Histogram_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(Histogram self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Histogram_computeCDFGradient(self, *args)

    def getParametersCollection(self):
        """getParametersCollection(Histogram self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.Histogram_getParametersCollection(self)

    def setFirst(self, *args):
        """setFirst(Histogram self, OT::NumericalScalar const first)"""
        return _dist_bundle2.Histogram_setFirst(self, *args)

    def getFirst(self):
        """getFirst(Histogram self) -> OT::NumericalScalar"""
        return _dist_bundle2.Histogram_getFirst(self)

    def setPairCollection(self, *args):
        """setPairCollection(Histogram self, HistogramPairCollection collection)"""
        return _dist_bundle2.Histogram_setPairCollection(self, *args)

    def getPairCollection(self):
        """getPairCollection(Histogram self) -> HistogramPairCollection"""
        return _dist_bundle2.Histogram_getPairCollection(self)

    def drawPDF(self, *args):
        """
        drawPDF(Histogram self) -> Graph
        drawPDF(Histogram self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber=OT::ResourceMap::GetAsUnsignedLong("DistributionImplementation-DefaultPointNumber")) -> Graph
        drawPDF(Histogram self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax) -> Graph
        """
        return _dist_bundle2.Histogram_drawPDF(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Histogram self) -> Histogram
        __init__(OT::Histogram self, OT::NumericalScalar const first, HistogramPairCollection collection) -> Histogram
        __init__(OT::Histogram self, OT::NumericalScalar first, HistogramPairCollection collection) -> Histogram
        __init__(OT::Histogram self, Histogram other) -> Histogram
        """
        this = _dist_bundle2.new_Histogram(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_Histogram
    __del__ = lambda self : None;
Histogram_swigregister = _dist_bundle2.Histogram_swigregister
Histogram_swigregister(Histogram)

def Histogram_GetClassName():
  """Histogram_GetClassName() -> OT::String"""
  return _dist_bundle2.Histogram_GetClassName()

class HistogramPairCollection(_object):
    """Proxy of C++ OT::Collection<(OT::HistogramPair)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, HistogramPairCollection, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, HistogramPairCollection, name)
    __swig_destroy__ = _dist_bundle2.delete_HistogramPairCollection
    __del__ = lambda self : None;
    def clear(self):
        """clear(HistogramPairCollection self)"""
        return _dist_bundle2.HistogramPairCollection_clear(self)

    def __len__(self):
        """__len__(HistogramPairCollection self) -> OT::UnsignedLong"""
        return _dist_bundle2.HistogramPairCollection___len__(self)

    def __eq__(self, *args):
        """__eq__(HistogramPairCollection self, HistogramPairCollection rhs) -> OT::Bool"""
        return _dist_bundle2.HistogramPairCollection___eq__(self, *args)

    def __contains__(self, *args):
        """__contains__(HistogramPairCollection self, HistogramPair val) -> OT::Bool"""
        return _dist_bundle2.HistogramPairCollection___contains__(self, *args)

    def __getitem__(self, *args):
        """__getitem__(HistogramPairCollection self, OT::UnsignedLong const i) -> HistogramPair"""
        return _dist_bundle2.HistogramPairCollection___getitem__(self, *args)

    def __setitem__(self, *args):
        """__setitem__(HistogramPairCollection self, OT::UnsignedLong const i, HistogramPair val)"""
        return _dist_bundle2.HistogramPairCollection___setitem__(self, *args)

    def __delitem__(self, *args):
        """__delitem__(HistogramPairCollection self, OT::UnsignedLong const i)"""
        return _dist_bundle2.HistogramPairCollection___delitem__(self, *args)

    def at(self, *args):
        """
        at(HistogramPairCollection self, OT::UnsignedLong const i) -> HistogramPair
        at(HistogramPairCollection self, OT::UnsignedLong const i) -> HistogramPair
        """
        return _dist_bundle2.HistogramPairCollection_at(self, *args)

    def add(self, *args):
        """
        add(HistogramPairCollection self, HistogramPair elt)
        add(HistogramPairCollection self, HistogramPairCollection coll)
        """
        return _dist_bundle2.HistogramPairCollection_add(self, *args)

    def getSize(self):
        """getSize(HistogramPairCollection self) -> OT::UnsignedLong"""
        return _dist_bundle2.HistogramPairCollection_getSize(self)

    def resize(self, *args):
        """resize(HistogramPairCollection self, OT::UnsignedLong const newSize)"""
        return _dist_bundle2.HistogramPairCollection_resize(self, *args)

    def isEmpty(self):
        """isEmpty(HistogramPairCollection self) -> OT::Bool"""
        return _dist_bundle2.HistogramPairCollection_isEmpty(self)

    def __repr__(self):
        """__repr__(HistogramPairCollection self) -> OT::String"""
        return _dist_bundle2.HistogramPairCollection___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(HistogramPairCollection self, OT::String const & offset="") -> OT::String
        __str__(HistogramPairCollection self) -> OT::String
        """
        return _dist_bundle2.HistogramPairCollection___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::Collection<(OT::HistogramPair)> self) -> HistogramPairCollection
        __init__(OT::Collection<(OT::HistogramPair)> self, OT::UnsignedLong const size) -> HistogramPairCollection
        __init__(OT::Collection<(OT::HistogramPair)> self, OT::UnsignedLong const size, HistogramPair value) -> HistogramPairCollection
        __init__(OT::Collection<(OT::HistogramPair)> self, PyObject * pyObj) -> HistogramPairCollection
        __init__(OT::Collection<(OT::HistogramPair)> self, HistogramPairCollection other) -> HistogramPairCollection
        """
        this = _dist_bundle2.new_HistogramPairCollection(*args)
        try: self.this.append(this)
        except: self.this = this
HistogramPairCollection_swigregister = _dist_bundle2.HistogramPairCollection_swigregister
HistogramPairCollection_swigregister(HistogramPairCollection)

class HistogramFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::HistogramFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, HistogramFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, HistogramFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.HistogramFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(HistogramFactory self) -> OT::String"""
        return _dist_bundle2.HistogramFactory_getClassName(self)

    def build(self, *args):
        """
        build(HistogramFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(HistogramFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(HistogramFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(HistogramFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(HistogramFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(HistogramFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.HistogramFactory_build(self, *args)

    def buildAsHistogram(self, *args):
        """
        buildAsHistogram(HistogramFactory self, NumericalSample sample) -> Histogram
        buildAsHistogram(HistogramFactory self) -> Histogram
        """
        return _dist_bundle2.HistogramFactory_buildAsHistogram(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::HistogramFactory self) -> HistogramFactory
        __init__(OT::HistogramFactory self, HistogramFactory other) -> HistogramFactory
        """
        this = _dist_bundle2.new_HistogramFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_HistogramFactory
    __del__ = lambda self : None;
HistogramFactory_swigregister = _dist_bundle2.HistogramFactory_swigregister
HistogramFactory_swigregister(HistogramFactory)

def HistogramFactory_GetClassName():
  """HistogramFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.HistogramFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(InverseNormal self) -> OT::String"""
        return _dist_bundle2.InverseNormal_getClassName(self)

    def __eq__(self, *args):
        """__eq__(InverseNormal self, InverseNormal other) -> OT::Bool"""
        return _dist_bundle2.InverseNormal___eq__(self, *args)

    def __repr__(self):
        """__repr__(InverseNormal self) -> OT::String"""
        return _dist_bundle2.InverseNormal___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(InverseNormal self, OT::String const & offset="") -> OT::String
        __str__(InverseNormal self) -> OT::String
        """
        return _dist_bundle2.InverseNormal___str__(self, offset)

    def getRealization(self):
        """getRealization(InverseNormal self) -> NumericalPoint"""
        return _dist_bundle2.InverseNormal_getRealization(self)

    def computePDF(self, *args):
        """
        computePDF(InverseNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(InverseNormal self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(InverseNormal self, NumericalSample sample) -> NumericalSample
        computePDF(InverseNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(InverseNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(InverseNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(InverseNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(InverseNormal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.InverseNormal_computePDF(self, *args)

    def computeLogPDF(self, *args):
        """
        computeLogPDF(InverseNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeLogPDF(InverseNormal self, NumericalPoint point) -> OT::NumericalScalar
        computeLogPDF(InverseNormal self, NumericalSample sample) -> NumericalSample
        computeLogPDF(InverseNormal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.InverseNormal_computeLogPDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(InverseNormal self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(InverseNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(InverseNormal self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(InverseNormal self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(InverseNormal self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(InverseNormal self, NumericalSample sample) -> NumericalSample
        computeCDF(InverseNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(InverseNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(InverseNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(InverseNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(InverseNormal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.InverseNormal_computeCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(InverseNormal self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.InverseNormal_computeCharacteristicFunction(self, *args)

    def computeLogCharacteristicFunction(self, *args):
        """computeLogCharacteristicFunction(InverseNormal self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.InverseNormal_computeLogCharacteristicFunction(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(InverseNormal self) -> NumericalPoint"""
        return _dist_bundle2.InverseNormal_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(InverseNormal self) -> NumericalPoint"""
        return _dist_bundle2.InverseNormal_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(InverseNormal self) -> NumericalPoint"""
        return _dist_bundle2.InverseNormal_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(InverseNormal self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.InverseNormal_getStandardMoment(self, *args)

    def setLambdaMu(self, *args):
        """setLambdaMu(InverseNormal self, OT::NumericalScalar const _lambda, OT::NumericalScalar const mu)"""
        return _dist_bundle2.InverseNormal_setLambdaMu(self, *args)

    def getLambda(self):
        """getLambda(InverseNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.InverseNormal_getLambda(self)

    def getMu(self):
        """getMu(InverseNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.InverseNormal_getMu(self)

    def getParametersCollection(self):
        """getParametersCollection(InverseNormal self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.InverseNormal_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(InverseNormal self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(InverseNormal self, NumericalPointCollection parametersCollection)
        setParametersCollection(InverseNormal self, NumericalPoint parameters)
        setParametersCollection(InverseNormal self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.InverseNormal_setParametersCollection(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::InverseNormal self) -> InverseNormal
        __init__(OT::InverseNormal self, OT::NumericalScalar const _lambda, OT::NumericalScalar const mu) -> InverseNormal
        __init__(OT::InverseNormal self, InverseNormal other) -> InverseNormal
        """
        this = _dist_bundle2.new_InverseNormal(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_InverseNormal
    __del__ = lambda self : None;
InverseNormal_swigregister = _dist_bundle2.InverseNormal_swigregister
InverseNormal_swigregister(InverseNormal)

def InverseNormal_GetClassName():
  """InverseNormal_GetClassName() -> OT::String"""
  return _dist_bundle2.InverseNormal_GetClassName()

class InverseNormalFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::InverseNormalFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, InverseNormalFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, InverseNormalFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.InverseNormalFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(InverseNormalFactory self) -> OT::String"""
        return _dist_bundle2.InverseNormalFactory_getClassName(self)

    def build(self, *args):
        """
        build(InverseNormalFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(InverseNormalFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(InverseNormalFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(InverseNormalFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(InverseNormalFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(InverseNormalFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(InverseNormalFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.InverseNormalFactory_build(self, *args)

    def buildAsInverseNormal(self, *args):
        """
        buildAsInverseNormal(InverseNormalFactory self, NumericalSample sample) -> InverseNormal
        buildAsInverseNormal(InverseNormalFactory self, NumericalPointCollection parameters) -> InverseNormal
        buildAsInverseNormal(InverseNormalFactory self, NumericalPointWithDescriptionCollection parameters) -> InverseNormal
        buildAsInverseNormal(InverseNormalFactory self) -> InverseNormal
        """
        return _dist_bundle2.InverseNormalFactory_buildAsInverseNormal(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::InverseNormalFactory self) -> InverseNormalFactory
        __init__(OT::InverseNormalFactory self, InverseNormalFactory other) -> InverseNormalFactory
        """
        this = _dist_bundle2.new_InverseNormalFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_InverseNormalFactory
    __del__ = lambda self : None;
InverseNormalFactory_swigregister = _dist_bundle2.InverseNormalFactory_swigregister
InverseNormalFactory_swigregister(InverseNormalFactory)

def InverseNormalFactory_GetClassName():
  """InverseNormalFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.InverseNormalFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(KPermutationsDistribution self) -> OT::String"""
        return _dist_bundle2.KPermutationsDistribution_getClassName(self)

    def __eq__(self, *args):
        """__eq__(KPermutationsDistribution self, KPermutationsDistribution other) -> OT::Bool"""
        return _dist_bundle2.KPermutationsDistribution___eq__(self, *args)

    def __repr__(self):
        """__repr__(KPermutationsDistribution self) -> OT::String"""
        return _dist_bundle2.KPermutationsDistribution___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(KPermutationsDistribution self, OT::String const & offset="") -> OT::String
        __str__(KPermutationsDistribution self) -> OT::String
        """
        return _dist_bundle2.KPermutationsDistribution___str__(self, offset)

    def getRealization(self):
        """getRealization(KPermutationsDistribution self) -> NumericalPoint"""
        return _dist_bundle2.KPermutationsDistribution_getRealization(self)

    def computePDF(self, *args):
        """
        computePDF(KPermutationsDistribution self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(KPermutationsDistribution self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(KPermutationsDistribution self, NumericalSample sample) -> NumericalSample
        computePDF(KPermutationsDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(KPermutationsDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(KPermutationsDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(KPermutationsDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(KPermutationsDistribution self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.KPermutationsDistribution_computePDF(self, *args)

    def computeLogPDF(self, *args):
        """
        computeLogPDF(KPermutationsDistribution self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeLogPDF(KPermutationsDistribution self, NumericalPoint point) -> OT::NumericalScalar
        computeLogPDF(KPermutationsDistribution self, NumericalSample sample) -> NumericalSample
        computeLogPDF(KPermutationsDistribution self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.KPermutationsDistribution_computeLogPDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(KPermutationsDistribution self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(KPermutationsDistribution self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(KPermutationsDistribution self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(KPermutationsDistribution self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(KPermutationsDistribution self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(KPermutationsDistribution self, NumericalSample sample) -> NumericalSample
        computeCDF(KPermutationsDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(KPermutationsDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(KPermutationsDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(KPermutationsDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(KPermutationsDistribution self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.KPermutationsDistribution_computeCDF(self, *args)

    def getMarginal(self, *args):
        """
        getMarginal(KPermutationsDistribution self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(KPermutationsDistribution self, Indices indices) -> DistributionImplementationPointer
        getMarginal(KPermutationsDistribution self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(KPermutationsDistribution self, Indices indices) -> DistributionImplementationPointer
        """
        return _dist_bundle2.KPermutationsDistribution_getMarginal(self, *args)

    def getSupport(self, *args):
        """
        getSupport(KPermutationsDistribution self, Interval interval) -> NumericalSample
        getSupport(KPermutationsDistribution self) -> NumericalSample
        getSupport(KPermutationsDistribution self, Interval interval) -> NumericalSample
        """
        return _dist_bundle2.KPermutationsDistribution_getSupport(self, *args)

    def getParametersCollection(self):
        """getParametersCollection(KPermutationsDistribution self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.KPermutationsDistribution_getParametersCollection(self)

    def setK(self, *args):
        """setK(KPermutationsDistribution self, OT::UnsignedLong const k)"""
        return _dist_bundle2.KPermutationsDistribution_setK(self, *args)

    def getK(self):
        """getK(KPermutationsDistribution self) -> OT::UnsignedLong"""
        return _dist_bundle2.KPermutationsDistribution_getK(self)

    def setN(self, *args):
        """setN(KPermutationsDistribution self, OT::UnsignedLong const n)"""
        return _dist_bundle2.KPermutationsDistribution_setN(self, *args)

    def getN(self):
        """getN(KPermutationsDistribution self) -> OT::UnsignedLong"""
        return _dist_bundle2.KPermutationsDistribution_getN(self)

    def __init__(self, *args): 
        """
        __init__(OT::KPermutationsDistribution self) -> KPermutationsDistribution
        __init__(OT::KPermutationsDistribution self, OT::UnsignedLong const k, OT::UnsignedLong const n) -> KPermutationsDistribution
        __init__(OT::KPermutationsDistribution self, KPermutationsDistribution other) -> KPermutationsDistribution
        """
        this = _dist_bundle2.new_KPermutationsDistribution(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_KPermutationsDistribution
    __del__ = lambda self : None;
KPermutationsDistribution_swigregister = _dist_bundle2.KPermutationsDistribution_swigregister
KPermutationsDistribution_swigregister(KPermutationsDistribution)

def KPermutationsDistribution_GetClassName():
  """KPermutationsDistribution_GetClassName() -> OT::String"""
  return _dist_bundle2.KPermutationsDistribution_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(KernelMixture self) -> OT::String"""
        return _dist_bundle2.KernelMixture_getClassName(self)

    def __eq__(self, *args):
        """__eq__(KernelMixture self, KernelMixture other) -> OT::Bool"""
        return _dist_bundle2.KernelMixture___eq__(self, *args)

    def __repr__(self):
        """__repr__(KernelMixture self) -> OT::String"""
        return _dist_bundle2.KernelMixture___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(KernelMixture self, OT::String const & offset="") -> OT::String
        __str__(KernelMixture self) -> OT::String
        """
        return _dist_bundle2.KernelMixture___str__(self, offset)

    def setKernel(self, *args):
        """setKernel(KernelMixture self, Distribution kernel)"""
        return _dist_bundle2.KernelMixture_setKernel(self, *args)

    def getKernel(self):
        """getKernel(KernelMixture self) -> Distribution"""
        return _dist_bundle2.KernelMixture_getKernel(self)

    def setBandwidth(self, *args):
        """setBandwidth(KernelMixture self, NumericalPoint bandwidth)"""
        return _dist_bundle2.KernelMixture_setBandwidth(self, *args)

    def getBandwidth(self):
        """getBandwidth(KernelMixture self) -> NumericalPoint"""
        return _dist_bundle2.KernelMixture_getBandwidth(self)

    def setInternalSample(self, *args):
        """setInternalSample(KernelMixture self, NumericalSample sample)"""
        return _dist_bundle2.KernelMixture_setInternalSample(self, *args)

    def getInternalSample(self):
        """getInternalSample(KernelMixture self) -> NumericalSample"""
        return _dist_bundle2.KernelMixture_getInternalSample(self)

    def getRealization(self):
        """getRealization(KernelMixture self) -> NumericalPoint"""
        return _dist_bundle2.KernelMixture_getRealization(self)

    def computeDDF(self, *args):
        """
        computeDDF(KernelMixture self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeDDF(KernelMixture self, NumericalPoint point) -> NumericalPoint
        computeDDF(KernelMixture self, NumericalSample sample) -> NumericalSample
        computeDDF(KernelMixture self, NumericalPoint point) -> NumericalPoint
        """
        return _dist_bundle2.KernelMixture_computeDDF(self, *args)

    def computePDF(self, *args):
        """
        computePDF(KernelMixture self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(KernelMixture self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(KernelMixture self, NumericalSample sample) -> NumericalSample
        computePDF(KernelMixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(KernelMixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(KernelMixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(KernelMixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(KernelMixture self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.KernelMixture_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(KernelMixture self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(KernelMixture self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(KernelMixture self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(KernelMixture self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(KernelMixture self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(KernelMixture self, NumericalSample sample) -> NumericalSample
        computeCDF(KernelMixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(KernelMixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(KernelMixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(KernelMixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(KernelMixture self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.KernelMixture_computeCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(KernelMixture self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.KernelMixture_computeCharacteristicFunction(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(KernelMixture self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.KernelMixture_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(KernelMixture self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.KernelMixture_computeCDFGradient(self, *args)

    def getMarginal(self, *args):
        """
        getMarginal(KernelMixture self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(KernelMixture self, Indices indices) -> DistributionImplementationPointer
        """
        return _dist_bundle2.KernelMixture_getMarginal(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(KernelMixture self) -> NumericalPoint"""
        return _dist_bundle2.KernelMixture_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(KernelMixture self) -> NumericalPoint"""
        return _dist_bundle2.KernelMixture_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(KernelMixture self) -> NumericalPoint"""
        return _dist_bundle2.KernelMixture_getKurtosis(self)

    def getParametersCollection(self):
        """getParametersCollection(KernelMixture self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.KernelMixture_getParametersCollection(self)

    def isElliptical(self):
        """isElliptical(KernelMixture self) -> OT::Bool"""
        return _dist_bundle2.KernelMixture_isElliptical(self)

    def isContinuous(self):
        """isContinuous(KernelMixture self) -> OT::Bool"""
        return _dist_bundle2.KernelMixture_isContinuous(self)

    def hasEllipticalCopula(self):
        """hasEllipticalCopula(KernelMixture self) -> OT::Bool"""
        return _dist_bundle2.KernelMixture_hasEllipticalCopula(self)

    def hasIndependentCopula(self):
        """hasIndependentCopula(KernelMixture self) -> OT::Bool"""
        return _dist_bundle2.KernelMixture_hasIndependentCopula(self)

    def __init__(self, *args): 
        """
        __init__(OT::KernelMixture self, Distribution kernel, NumericalPoint bandwidth, NumericalSample sample) -> KernelMixture
        __init__(OT::KernelMixture self, KernelMixture other) -> KernelMixture
        __init__(OT::KernelMixture self, DistributionImplementation kernel, NumericalPoint bandwidth, NumericalSample sample) -> KernelMixture
        """
        this = _dist_bundle2.new_KernelMixture(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_KernelMixture
    __del__ = lambda self : None;
KernelMixture_swigregister = _dist_bundle2.KernelMixture_swigregister
KernelMixture_swigregister(KernelMixture)

def KernelMixture_GetClassName():
  """KernelMixture_GetClassName() -> OT::String"""
  return _dist_bundle2.KernelMixture_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(KernelSmoothing self) -> OT::String"""
        return _dist_bundle2.KernelSmoothing_getClassName(self)

    def build(self, *args):
        """
        build(KernelSmoothing self, NumericalSample sample, OT::Bool const boundaryCorrection=False) -> Distribution
        build(KernelSmoothing self, NumericalSample sample) -> Distribution
        build(KernelSmoothing self, NumericalSample sample, NumericalPoint bandwidth, OT::Bool const boundaryCorrection=False) -> Distribution
        build(KernelSmoothing self, NumericalSample sample, NumericalPoint bandwidth) -> Distribution
        """
        return _dist_bundle2.KernelSmoothing_build(self, *args)

    def getBandwidth(self):
        """getBandwidth(KernelSmoothing self) -> NumericalPoint"""
        return _dist_bundle2.KernelSmoothing_getBandwidth(self)

    def getKernel(self):
        """getKernel(KernelSmoothing self) -> Distribution"""
        return _dist_bundle2.KernelSmoothing_getKernel(self)

    def computeSilvermanBandwidth(self, *args):
        """computeSilvermanBandwidth(KernelSmoothing self, NumericalSample sample) -> NumericalPoint"""
        return _dist_bundle2.KernelSmoothing_computeSilvermanBandwidth(self, *args)

    def computePluginBandwidth(self, *args):
        """computePluginBandwidth(KernelSmoothing self, NumericalSample sample) -> NumericalPoint"""
        return _dist_bundle2.KernelSmoothing_computePluginBandwidth(self, *args)

    def computeMixedBandwidth(self, *args):
        """computeMixedBandwidth(KernelSmoothing self, NumericalSample sample) -> NumericalPoint"""
        return _dist_bundle2.KernelSmoothing_computeMixedBandwidth(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::KernelSmoothing self, OT::String const & name="KernelSmoothing") -> KernelSmoothing
        __init__(OT::KernelSmoothing self) -> KernelSmoothing
        __init__(OT::KernelSmoothing self, Distribution kernel, OT::Bool const & bined=True, OT::UnsignedLong const binNumber=OT::ResourceMap::GetAsUnsignedLong( "KernelSmoothing-BinNumber" ), 
            OT::String const & name="KernelSmoothing") -> KernelSmoothing
        __init__(OT::KernelSmoothing self, Distribution kernel, OT::Bool const & bined=True, OT::UnsignedLong const binNumber=OT::ResourceMap::GetAsUnsignedLong( "KernelSmoothing-BinNumber" )) -> KernelSmoothing
        __init__(OT::KernelSmoothing self, Distribution kernel, OT::Bool const & bined=True) -> KernelSmoothing
        __init__(OT::KernelSmoothing self, Distribution kernel) -> KernelSmoothing
        __init__(OT::KernelSmoothing self, KernelSmoothing other) -> KernelSmoothing
        """
        this = _dist_bundle2.new_KernelSmoothing(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_KernelSmoothing
    __del__ = lambda self : None;
KernelSmoothing_swigregister = _dist_bundle2.KernelSmoothing_swigregister
KernelSmoothing_swigregister(KernelSmoothing)

def KernelSmoothing_GetClassName():
  """KernelSmoothing_GetClassName() -> OT::String"""
  return _dist_bundle2.KernelSmoothing_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Laplace self) -> OT::String"""
        return _dist_bundle2.Laplace_getClassName(self)

    def __eq__(self, *args):
        """__eq__(Laplace self, Laplace other) -> OT::Bool"""
        return _dist_bundle2.Laplace___eq__(self, *args)

    def __repr__(self):
        """__repr__(Laplace self) -> OT::String"""
        return _dist_bundle2.Laplace___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Laplace self, OT::String const & offset="") -> OT::String
        __str__(Laplace self) -> OT::String
        """
        return _dist_bundle2.Laplace___str__(self, offset)

    def getRealization(self):
        """getRealization(Laplace self) -> NumericalPoint"""
        return _dist_bundle2.Laplace_getRealization(self)

    def computeDDF(self, *args):
        """
        computeDDF(Laplace self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeDDF(Laplace self, NumericalPoint point) -> NumericalPoint
        computeDDF(Laplace self, NumericalSample sample) -> NumericalSample
        computeDDF(Laplace self, NumericalPoint point) -> NumericalPoint
        """
        return _dist_bundle2.Laplace_computeDDF(self, *args)

    def computePDF(self, *args):
        """
        computePDF(Laplace self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(Laplace self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(Laplace self, NumericalSample sample) -> NumericalSample
        computePDF(Laplace self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Laplace self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(Laplace self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Laplace self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(Laplace self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Laplace_computePDF(self, *args)

    def computeLogPDF(self, *args):
        """
        computeLogPDF(Laplace self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeLogPDF(Laplace self, NumericalPoint point) -> OT::NumericalScalar
        computeLogPDF(Laplace self, NumericalSample sample) -> NumericalSample
        computeLogPDF(Laplace self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Laplace_computeLogPDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(Laplace self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Laplace self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(Laplace self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Laplace self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(Laplace self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(Laplace self, NumericalSample sample) -> NumericalSample
        computeCDF(Laplace self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Laplace self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(Laplace self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Laplace self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(Laplace self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Laplace_computeCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(Laplace self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.Laplace_computeCharacteristicFunction(self, *args)

    def computeLogCharacteristicFunction(self, *args):
        """computeLogCharacteristicFunction(Laplace self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.Laplace_computeLogCharacteristicFunction(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(Laplace self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Laplace_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(Laplace self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Laplace_computeCDFGradient(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(Laplace self) -> NumericalPoint"""
        return _dist_bundle2.Laplace_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(Laplace self) -> NumericalPoint"""
        return _dist_bundle2.Laplace_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(Laplace self) -> NumericalPoint"""
        return _dist_bundle2.Laplace_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(Laplace self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.Laplace_getStandardMoment(self, *args)

    def getStandardRepresentative(self):
        """getStandardRepresentative(Laplace self) -> DistributionImplementationPointer"""
        return _dist_bundle2.Laplace_getStandardRepresentative(self)

    def getParametersCollection(self):
        """getParametersCollection(Laplace self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.Laplace_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(Laplace self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(Laplace self, NumericalPointCollection parametersCollection)
        setParametersCollection(Laplace self, NumericalPoint parameters)
        setParametersCollection(Laplace self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.Laplace_setParametersCollection(self, *args)

    def setMu(self, *args):
        """setMu(Laplace self, OT::NumericalScalar const mu)"""
        return _dist_bundle2.Laplace_setMu(self, *args)

    def getMu(self):
        """getMu(Laplace self) -> OT::NumericalScalar"""
        return _dist_bundle2.Laplace_getMu(self)

    def setLambda(self, *args):
        """setLambda(Laplace self, OT::NumericalScalar const _lambda)"""
        return _dist_bundle2.Laplace_setLambda(self, *args)

    def getLambda(self):
        """getLambda(Laplace self) -> OT::NumericalScalar"""
        return _dist_bundle2.Laplace_getLambda(self)

    def __init__(self, *args): 
        """
        __init__(OT::Laplace self) -> Laplace
        __init__(OT::Laplace self, OT::NumericalScalar const _lambda, OT::NumericalScalar const mu=0.0) -> Laplace
        __init__(OT::Laplace self, OT::NumericalScalar const _lambda) -> Laplace
        __init__(OT::Laplace self, Laplace other) -> Laplace
        """
        this = _dist_bundle2.new_Laplace(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_Laplace
    __del__ = lambda self : None;
Laplace_swigregister = _dist_bundle2.Laplace_swigregister
Laplace_swigregister(Laplace)

def Laplace_GetClassName():
  """Laplace_GetClassName() -> OT::String"""
  return _dist_bundle2.Laplace_GetClassName()

class LaplaceFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::LaplaceFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LaplaceFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LaplaceFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.LaplaceFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LaplaceFactory self) -> OT::String"""
        return _dist_bundle2.LaplaceFactory_getClassName(self)

    def build(self, *args):
        """
        build(LaplaceFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LaplaceFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(LaplaceFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LaplaceFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(LaplaceFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LaplaceFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LaplaceFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.LaplaceFactory_build(self, *args)

    def buildAsLaplace(self, *args):
        """
        buildAsLaplace(LaplaceFactory self, NumericalSample sample) -> Laplace
        buildAsLaplace(LaplaceFactory self, NumericalPointCollection parameters) -> Laplace
        buildAsLaplace(LaplaceFactory self, NumericalPointWithDescriptionCollection parameters) -> Laplace
        buildAsLaplace(LaplaceFactory self) -> Laplace
        """
        return _dist_bundle2.LaplaceFactory_buildAsLaplace(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::LaplaceFactory self) -> LaplaceFactory
        __init__(OT::LaplaceFactory self, LaplaceFactory other) -> LaplaceFactory
        """
        this = _dist_bundle2.new_LaplaceFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_LaplaceFactory
    __del__ = lambda self : None;
LaplaceFactory_swigregister = _dist_bundle2.LaplaceFactory_swigregister
LaplaceFactory_swigregister(LaplaceFactory)

def LaplaceFactory_GetClassName():
  """LaplaceFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.LaplaceFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Logistic self) -> OT::String"""
        return _dist_bundle2.Logistic_getClassName(self)

    def __eq__(self, *args):
        """__eq__(Logistic self, Logistic other) -> OT::Bool"""
        return _dist_bundle2.Logistic___eq__(self, *args)

    def __repr__(self):
        """__repr__(Logistic self) -> OT::String"""
        return _dist_bundle2.Logistic___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Logistic self, OT::String const & offset="") -> OT::String
        __str__(Logistic self) -> OT::String
        """
        return _dist_bundle2.Logistic___str__(self, offset)

    def getRealization(self):
        """getRealization(Logistic self) -> NumericalPoint"""
        return _dist_bundle2.Logistic_getRealization(self)

    def computeDDF(self, *args):
        """
        computeDDF(Logistic self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeDDF(Logistic self, NumericalPoint point) -> NumericalPoint
        computeDDF(Logistic self, NumericalSample sample) -> NumericalSample
        computeDDF(Logistic self, NumericalPoint point) -> NumericalPoint
        """
        return _dist_bundle2.Logistic_computeDDF(self, *args)

    def computePDF(self, *args):
        """
        computePDF(Logistic self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(Logistic self, NumericalSample sample) -> NumericalSample
        computePDF(Logistic self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Logistic self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(Logistic self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Logistic self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Logistic_computePDF(self, *args)

    def computeLogPDF(self, *args):
        """
        computeLogPDF(Logistic self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeLogPDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        computeLogPDF(Logistic self, NumericalSample sample) -> NumericalSample
        computeLogPDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Logistic_computeLogPDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(Logistic self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Logistic self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(Logistic self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(Logistic self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(Logistic self, NumericalSample sample) -> NumericalSample
        computeCDF(Logistic self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Logistic self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(Logistic self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Logistic self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Logistic_computeCDF(self, *args)

    def computeComplementaryCDF(self, *args):
        """
        computeComplementaryCDF(Logistic self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeComplementaryCDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        computeComplementaryCDF(Logistic self, NumericalSample sample) -> NumericalSample
        computeComplementaryCDF(Logistic self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeComplementaryCDF(Logistic self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeComplementaryCDF(Logistic self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Logistic_computeComplementaryCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(Logistic self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.Logistic_computeCharacteristicFunction(self, *args)

    def computeLogCharacteristicFunction(self, *args):
        """computeLogCharacteristicFunction(Logistic self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.Logistic_computeLogCharacteristicFunction(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(Logistic self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Logistic_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(Logistic self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Logistic_computeCDFGradient(self, *args)

    def getRoughness(self):
        """getRoughness(Logistic self) -> OT::NumericalScalar"""
        return _dist_bundle2.Logistic_getRoughness(self)

    def getStandardDeviation(self):
        """getStandardDeviation(Logistic self) -> NumericalPoint"""
        return _dist_bundle2.Logistic_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(Logistic self) -> NumericalPoint"""
        return _dist_bundle2.Logistic_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(Logistic self) -> NumericalPoint"""
        return _dist_bundle2.Logistic_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(Logistic self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.Logistic_getStandardMoment(self, *args)

    def getStandardRepresentative(self):
        """getStandardRepresentative(Logistic self) -> DistributionImplementationPointer"""
        return _dist_bundle2.Logistic_getStandardRepresentative(self)

    def getParametersCollection(self):
        """getParametersCollection(Logistic self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.Logistic_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(Logistic self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(Logistic self, NumericalPointCollection parametersCollection)
        setParametersCollection(Logistic self, NumericalPoint parameters)
        setParametersCollection(Logistic self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.Logistic_setParametersCollection(self, *args)

    def setAlpha(self, *args):
        """setAlpha(Logistic self, OT::NumericalScalar const alpha)"""
        return _dist_bundle2.Logistic_setAlpha(self, *args)

    def getAlpha(self):
        """getAlpha(Logistic self) -> OT::NumericalScalar"""
        return _dist_bundle2.Logistic_getAlpha(self)

    def setBeta(self, *args):
        """setBeta(Logistic self, OT::NumericalScalar const beta)"""
        return _dist_bundle2.Logistic_setBeta(self, *args)

    def getBeta(self):
        """getBeta(Logistic self) -> OT::NumericalScalar"""
        return _dist_bundle2.Logistic_getBeta(self)

    def __init__(self, *args): 
        """
        __init__(OT::Logistic self) -> Logistic
        __init__(OT::Logistic self, OT::NumericalScalar const alpha, OT::NumericalScalar const beta) -> Logistic
        __init__(OT::Logistic self, Logistic other) -> Logistic
        """
        this = _dist_bundle2.new_Logistic(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_Logistic
    __del__ = lambda self : None;
Logistic_swigregister = _dist_bundle2.Logistic_swigregister
Logistic_swigregister(Logistic)

def Logistic_GetClassName():
  """Logistic_GetClassName() -> OT::String"""
  return _dist_bundle2.Logistic_GetClassName()

class LogisticFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::LogisticFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LogisticFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LogisticFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.LogisticFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LogisticFactory self) -> OT::String"""
        return _dist_bundle2.LogisticFactory_getClassName(self)

    def build(self, *args):
        """
        build(LogisticFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LogisticFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(LogisticFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LogisticFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(LogisticFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LogisticFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LogisticFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.LogisticFactory_build(self, *args)

    def buildAsLogistic(self, *args):
        """
        buildAsLogistic(LogisticFactory self, NumericalSample sample) -> Logistic
        buildAsLogistic(LogisticFactory self, NumericalPointCollection parameters) -> Logistic
        buildAsLogistic(LogisticFactory self, NumericalPointWithDescriptionCollection parameters) -> Logistic
        buildAsLogistic(LogisticFactory self) -> Logistic
        """
        return _dist_bundle2.LogisticFactory_buildAsLogistic(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::LogisticFactory self) -> LogisticFactory
        __init__(OT::LogisticFactory self, LogisticFactory other) -> LogisticFactory
        """
        this = _dist_bundle2.new_LogisticFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_LogisticFactory
    __del__ = lambda self : None;
LogisticFactory_swigregister = _dist_bundle2.LogisticFactory_swigregister
LogisticFactory_swigregister(LogisticFactory)

def LogisticFactory_GetClassName():
  """LogisticFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.LogisticFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LogNormal self) -> OT::String"""
        return _dist_bundle2.LogNormal_getClassName(self)

    MUSIGMA_LOG = _dist_bundle2.LogNormal_MUSIGMA_LOG
    MUSIGMA = _dist_bundle2.LogNormal_MUSIGMA
    MU_SIGMAOVERMU = _dist_bundle2.LogNormal_MU_SIGMAOVERMU
    def __eq__(self, *args):
        """__eq__(LogNormal self, LogNormal other) -> OT::Bool"""
        return _dist_bundle2.LogNormal___eq__(self, *args)

    def __repr__(self):
        """__repr__(LogNormal self) -> OT::String"""
        return _dist_bundle2.LogNormal___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(LogNormal self, OT::String const & offset="") -> OT::String
        __str__(LogNormal self) -> OT::String
        """
        return _dist_bundle2.LogNormal___str__(self, offset)

    def getRealization(self):
        """getRealization(LogNormal self) -> NumericalPoint"""
        return _dist_bundle2.LogNormal_getRealization(self)

    def computeDDF(self, *args):
        """
        computeDDF(LogNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeDDF(LogNormal self, NumericalPoint point) -> NumericalPoint
        computeDDF(LogNormal self, NumericalSample sample) -> NumericalSample
        computeDDF(LogNormal self, NumericalPoint point) -> NumericalPoint
        """
        return _dist_bundle2.LogNormal_computeDDF(self, *args)

    def computePDF(self, *args):
        """
        computePDF(LogNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(LogNormal self, NumericalSample sample) -> NumericalSample
        computePDF(LogNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(LogNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(LogNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(LogNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.LogNormal_computePDF(self, *args)

    def computeLogPDF(self, *args):
        """
        computeLogPDF(LogNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeLogPDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        computeLogPDF(LogNormal self, NumericalSample sample) -> NumericalSample
        computeLogPDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.LogNormal_computeLogPDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(LogNormal self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(LogNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(LogNormal self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(LogNormal self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(LogNormal self, NumericalSample sample) -> NumericalSample
        computeCDF(LogNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(LogNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(LogNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(LogNormal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.LogNormal_computeCDF(self, *args)

    def computeComplementaryCDF(self, *args):
        """
        computeComplementaryCDF(LogNormal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeComplementaryCDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        computeComplementaryCDF(LogNormal self, NumericalSample sample) -> NumericalSample
        computeComplementaryCDF(LogNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeComplementaryCDF(LogNormal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeComplementaryCDF(LogNormal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.LogNormal_computeComplementaryCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(LogNormal self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.LogNormal_computeCharacteristicFunction(self, *args)

    def computeLogCharacteristicFunction(self, *args):
        """computeLogCharacteristicFunction(LogNormal self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.LogNormal_computeLogCharacteristicFunction(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(LogNormal self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.LogNormal_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(LogNormal self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.LogNormal_computeCDFGradient(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(LogNormal self) -> NumericalPoint"""
        return _dist_bundle2.LogNormal_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(LogNormal self) -> NumericalPoint"""
        return _dist_bundle2.LogNormal_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(LogNormal self) -> NumericalPoint"""
        return _dist_bundle2.LogNormal_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(LogNormal self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.LogNormal_getStandardMoment(self, *args)

    def getStandardRepresentative(self):
        """getStandardRepresentative(LogNormal self) -> DistributionImplementationPointer"""
        return _dist_bundle2.LogNormal_getStandardRepresentative(self)

    def getParametersCollection(self):
        """getParametersCollection(LogNormal self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.LogNormal_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(LogNormal self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(LogNormal self, NumericalPointCollection parametersCollection)
        setParametersCollection(LogNormal self, NumericalPoint parameters)
        setParametersCollection(LogNormal self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.LogNormal_setParametersCollection(self, *args)

    def setMuLog(self, *args):
        """setMuLog(LogNormal self, OT::NumericalScalar const muLog)"""
        return _dist_bundle2.LogNormal_setMuLog(self, *args)

    def getMuLog(self):
        """getMuLog(LogNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogNormal_getMuLog(self)

    def setSigmaLog(self, *args):
        """setSigmaLog(LogNormal self, OT::NumericalScalar const sigmaLog)"""
        return _dist_bundle2.LogNormal_setSigmaLog(self, *args)

    def getSigmaLog(self):
        """getSigmaLog(LogNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogNormal_getSigmaLog(self)

    def setMuSigma(self, *args):
        """setMuSigma(LogNormal self, OT::NumericalScalar const mu, OT::NumericalScalar const sigma)"""
        return _dist_bundle2.LogNormal_setMuSigma(self, *args)

    def getMu(self):
        """getMu(LogNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogNormal_getMu(self)

    def getSigma(self):
        """getSigma(LogNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogNormal_getSigma(self)

    def setGamma(self, *args):
        """setGamma(LogNormal self, OT::NumericalScalar const gamma)"""
        return _dist_bundle2.LogNormal_setGamma(self, *args)

    def getGamma(self):
        """getGamma(LogNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogNormal_getGamma(self)

    def getSigmaOverMu(self):
        """getSigmaOverMu(LogNormal self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogNormal_getSigmaOverMu(self)

    def __init__(self, *args): 
        """
        __init__(OT::LogNormal self) -> LogNormal
        __init__(OT::LogNormal self, OT::NumericalScalar const arg1, OT::NumericalScalar const arg2, OT::NumericalScalar const gamma=0.0, 
            OT::LogNormal::ParameterSet const set=MUSIGMA_LOG) -> LogNormal
        __init__(OT::LogNormal self, OT::NumericalScalar const arg1, OT::NumericalScalar const arg2, OT::NumericalScalar const gamma=0.0) -> LogNormal
        __init__(OT::LogNormal self, OT::NumericalScalar const arg1, OT::NumericalScalar const arg2) -> LogNormal
        __init__(OT::LogNormal self, LogNormal other) -> LogNormal
        """
        this = _dist_bundle2.new_LogNormal(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_LogNormal
    __del__ = lambda self : None;
LogNormal_swigregister = _dist_bundle2.LogNormal_swigregister
LogNormal_swigregister(LogNormal)

def LogNormal_GetClassName():
  """LogNormal_GetClassName() -> OT::String"""
  return _dist_bundle2.LogNormal_GetClassName()

class LogNormalFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::LogNormalFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LogNormalFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LogNormalFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.LogNormalFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LogNormalFactory self) -> OT::String"""
        return _dist_bundle2.LogNormalFactory_getClassName(self)

    def build(self, *args):
        """
        build(LogNormalFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LogNormalFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(LogNormalFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LogNormalFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(LogNormalFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LogNormalFactory self, NumericalSample sample, OT::UnsignedLong const method) -> DistributionImplementationPointer
        build(LogNormalFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LogNormalFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.LogNormalFactory_build(self, *args)

    def buildAsLogNormal(self, *args):
        """
        buildAsLogNormal(LogNormalFactory self, NumericalSample sample) -> LogNormal
        buildAsLogNormal(LogNormalFactory self, NumericalSample sample, OT::UnsignedLong const method) -> LogNormal
        buildAsLogNormal(LogNormalFactory self, NumericalPointCollection parameters) -> LogNormal
        buildAsLogNormal(LogNormalFactory self, NumericalPointWithDescriptionCollection parameters) -> LogNormal
        buildAsLogNormal(LogNormalFactory self) -> LogNormal
        """
        return _dist_bundle2.LogNormalFactory_buildAsLogNormal(self, *args)

    def buildMethodOfMoments(self, *args):
        """buildMethodOfMoments(LogNormalFactory self, NumericalSample sample) -> LogNormal"""
        return _dist_bundle2.LogNormalFactory_buildMethodOfMoments(self, *args)

    def buildMethodOfLocalLikelihoodMaximization(self, *args):
        """buildMethodOfLocalLikelihoodMaximization(LogNormalFactory self, NumericalSample sample) -> LogNormal"""
        return _dist_bundle2.LogNormalFactory_buildMethodOfLocalLikelihoodMaximization(self, *args)

    def buildMethodOfModifiedMoments(self, *args):
        """buildMethodOfModifiedMoments(LogNormalFactory self, NumericalSample sample) -> LogNormal"""
        return _dist_bundle2.LogNormalFactory_buildMethodOfModifiedMoments(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::LogNormalFactory self) -> LogNormalFactory
        __init__(OT::LogNormalFactory self, LogNormalFactory other) -> LogNormalFactory
        """
        this = _dist_bundle2.new_LogNormalFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_LogNormalFactory
    __del__ = lambda self : None;
LogNormalFactory_swigregister = _dist_bundle2.LogNormalFactory_swigregister
LogNormalFactory_swigregister(LogNormalFactory)

def LogNormalFactory_GetClassName():
  """LogNormalFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.LogNormalFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LogUniform self) -> OT::String"""
        return _dist_bundle2.LogUniform_getClassName(self)

    def __eq__(self, *args):
        """__eq__(LogUniform self, LogUniform other) -> OT::Bool"""
        return _dist_bundle2.LogUniform___eq__(self, *args)

    def __repr__(self):
        """__repr__(LogUniform self) -> OT::String"""
        return _dist_bundle2.LogUniform___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(LogUniform self, OT::String const & offset="") -> OT::String
        __str__(LogUniform self) -> OT::String
        """
        return _dist_bundle2.LogUniform___str__(self, offset)

    def getRealization(self):
        """getRealization(LogUniform self) -> NumericalPoint"""
        return _dist_bundle2.LogUniform_getRealization(self)

    def computeDDF(self, *args):
        """
        computeDDF(LogUniform self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeDDF(LogUniform self, NumericalPoint point) -> NumericalPoint
        computeDDF(LogUniform self, NumericalSample sample) -> NumericalSample
        computeDDF(LogUniform self, NumericalPoint point) -> NumericalPoint
        """
        return _dist_bundle2.LogUniform_computeDDF(self, *args)

    def computePDF(self, *args):
        """
        computePDF(LogUniform self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(LogUniform self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(LogUniform self, NumericalSample sample) -> NumericalSample
        computePDF(LogUniform self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(LogUniform self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(LogUniform self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(LogUniform self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(LogUniform self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.LogUniform_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(LogUniform self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(LogUniform self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(LogUniform self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(LogUniform self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(LogUniform self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(LogUniform self, NumericalSample sample) -> NumericalSample
        computeCDF(LogUniform self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(LogUniform self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(LogUniform self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(LogUniform self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(LogUniform self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.LogUniform_computeCDF(self, *args)

    def computeComplementaryCDF(self, *args):
        """
        computeComplementaryCDF(LogUniform self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeComplementaryCDF(LogUniform self, NumericalPoint point) -> OT::NumericalScalar
        computeComplementaryCDF(LogUniform self, NumericalSample sample) -> NumericalSample
        computeComplementaryCDF(LogUniform self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeComplementaryCDF(LogUniform self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeComplementaryCDF(LogUniform self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.LogUniform_computeComplementaryCDF(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(LogUniform self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.LogUniform_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(LogUniform self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.LogUniform_computeCDFGradient(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(LogUniform self) -> NumericalPoint"""
        return _dist_bundle2.LogUniform_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(LogUniform self) -> NumericalPoint"""
        return _dist_bundle2.LogUniform_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(LogUniform self) -> NumericalPoint"""
        return _dist_bundle2.LogUniform_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(LogUniform self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.LogUniform_getStandardMoment(self, *args)

    def getParametersCollection(self):
        """getParametersCollection(LogUniform self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.LogUniform_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(LogUniform self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(LogUniform self, NumericalPointCollection parametersCollection)
        setParametersCollection(LogUniform self, NumericalPoint parameters)
        setParametersCollection(LogUniform self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.LogUniform_setParametersCollection(self, *args)

    def setALog(self, *args):
        """setALog(LogUniform self, OT::NumericalScalar const aLog)"""
        return _dist_bundle2.LogUniform_setALog(self, *args)

    def getALog(self):
        """getALog(LogUniform self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogUniform_getALog(self)

    def setBLog(self, *args):
        """setBLog(LogUniform self, OT::NumericalScalar const bLog)"""
        return _dist_bundle2.LogUniform_setBLog(self, *args)

    def getBLog(self):
        """getBLog(LogUniform self) -> OT::NumericalScalar"""
        return _dist_bundle2.LogUniform_getBLog(self)

    def __init__(self, *args): 
        """
        __init__(OT::LogUniform self) -> LogUniform
        __init__(OT::LogUniform self, OT::NumericalScalar const aLog, OT::NumericalScalar const bLog) -> LogUniform
        __init__(OT::LogUniform self, LogUniform other) -> LogUniform
        """
        this = _dist_bundle2.new_LogUniform(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_LogUniform
    __del__ = lambda self : None;
LogUniform_swigregister = _dist_bundle2.LogUniform_swigregister
LogUniform_swigregister(LogUniform)

def LogUniform_GetClassName():
  """LogUniform_GetClassName() -> OT::String"""
  return _dist_bundle2.LogUniform_GetClassName()

class LogUniformFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::LogUniformFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, LogUniformFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, LogUniformFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.LogUniformFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LogUniformFactory self) -> OT::String"""
        return _dist_bundle2.LogUniformFactory_getClassName(self)

    def build(self, *args):
        """
        build(LogUniformFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LogUniformFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(LogUniformFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LogUniformFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(LogUniformFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(LogUniformFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(LogUniformFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.LogUniformFactory_build(self, *args)

    def buildAsLogUniform(self, *args):
        """
        buildAsLogUniform(LogUniformFactory self, NumericalSample sample) -> LogUniform
        buildAsLogUniform(LogUniformFactory self, NumericalPointCollection parameters) -> LogUniform
        buildAsLogUniform(LogUniformFactory self, NumericalPointWithDescriptionCollection parameters) -> LogUniform
        buildAsLogUniform(LogUniformFactory self) -> LogUniform
        """
        return _dist_bundle2.LogUniformFactory_buildAsLogUniform(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::LogUniformFactory self) -> LogUniformFactory
        __init__(OT::LogUniformFactory self, LogUniformFactory other) -> LogUniformFactory
        """
        this = _dist_bundle2.new_LogUniformFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_LogUniformFactory
    __del__ = lambda self : None;
LogUniformFactory_swigregister = _dist_bundle2.LogUniformFactory_swigregister
LogUniformFactory_swigregister(LogUniformFactory)

def LogUniformFactory_GetClassName():
  """LogUniformFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.LogUniformFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Mixture self) -> OT::String"""
        return _dist_bundle2.Mixture_getClassName(self)

    def __eq__(self, *args):
        """__eq__(Mixture self, Mixture other) -> OT::Bool"""
        return _dist_bundle2.Mixture___eq__(self, *args)

    def __repr__(self):
        """__repr__(Mixture self) -> OT::String"""
        return _dist_bundle2.Mixture___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Mixture self, OT::String const & offset="") -> OT::String
        __str__(Mixture self) -> OT::String
        """
        return _dist_bundle2.Mixture___str__(self, offset)

    def setDistributionCollection(self, *args):
        """setDistributionCollection(Mixture self, DistributionCollection coll)"""
        return _dist_bundle2.Mixture_setDistributionCollection(self, *args)

    def getDistributionCollection(self):
        """getDistributionCollection(Mixture self) -> DistributionCollection"""
        return _dist_bundle2.Mixture_getDistributionCollection(self)

    def getWeights(self):
        """getWeights(Mixture self) -> NumericalPoint"""
        return _dist_bundle2.Mixture_getWeights(self)

    def setWeights(self, *args):
        """setWeights(Mixture self, NumericalPoint weights)"""
        return _dist_bundle2.Mixture_setWeights(self, *args)

    def getRealization(self):
        """getRealization(Mixture self) -> NumericalPoint"""
        return _dist_bundle2.Mixture_getRealization(self)

    def computeDDF(self, *args):
        """
        computeDDF(Mixture self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeDDF(Mixture self, NumericalPoint point) -> NumericalPoint
        computeDDF(Mixture self, NumericalSample sample) -> NumericalSample
        computeDDF(Mixture self, NumericalPoint point) -> NumericalPoint
        """
        return _dist_bundle2.Mixture_computeDDF(self, *args)

    def computePDF(self, *args):
        """
        computePDF(Mixture self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(Mixture self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(Mixture self, NumericalSample sample) -> NumericalSample
        computePDF(Mixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Mixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(Mixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Mixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(Mixture self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Mixture_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(Mixture self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Mixture self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(Mixture self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Mixture self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(Mixture self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(Mixture self, NumericalSample sample) -> NumericalSample
        computeCDF(Mixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Mixture self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(Mixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Mixture self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(Mixture self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Mixture_computeCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(Mixture self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.Mixture_computeCharacteristicFunction(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(Mixture self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Mixture_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(Mixture self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Mixture_computeCDFGradient(self, *args)

    def getMarginal(self, *args):
        """
        getMarginal(Mixture self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(Mixture self, Indices indices) -> DistributionImplementationPointer
        """
        return _dist_bundle2.Mixture_getMarginal(self, *args)

    def getParametersCollection(self):
        """getParametersCollection(Mixture self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.Mixture_getParametersCollection(self)

    def isElliptical(self):
        """isElliptical(Mixture self) -> OT::Bool"""
        return _dist_bundle2.Mixture_isElliptical(self)

    def isContinuous(self):
        """isContinuous(Mixture self) -> OT::Bool"""
        return _dist_bundle2.Mixture_isContinuous(self)

    def isIntegral(self):
        """isIntegral(Mixture self) -> OT::Bool"""
        return _dist_bundle2.Mixture_isIntegral(self)

    def hasEllipticalCopula(self):
        """hasEllipticalCopula(Mixture self) -> OT::Bool"""
        return _dist_bundle2.Mixture_hasEllipticalCopula(self)

    def hasIndependentCopula(self):
        """hasIndependentCopula(Mixture self) -> OT::Bool"""
        return _dist_bundle2.Mixture_hasIndependentCopula(self)

    def __init__(self, *args): 
        """
        __init__(OT::Mixture self) -> Mixture
        __init__(OT::Mixture self, DistributionCollection coll) -> Mixture
        __init__(OT::Mixture self, DistributionCollection coll, NumericalPoint weights) -> Mixture
        __init__(OT::Mixture self, Mixture other) -> Mixture
        """
        this = _dist_bundle2.new_Mixture(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_Mixture
    __del__ = lambda self : None;
Mixture_swigregister = _dist_bundle2.Mixture_swigregister
Mixture_swigregister(Mixture)

def Mixture_GetClassName():
  """Mixture_GetClassName() -> OT::String"""
  return _dist_bundle2.Mixture_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Multinomial self) -> OT::String"""
        return _dist_bundle2.Multinomial_getClassName(self)

    def __eq__(self, *args):
        """__eq__(Multinomial self, Multinomial other) -> OT::Bool"""
        return _dist_bundle2.Multinomial___eq__(self, *args)

    def __repr__(self):
        """__repr__(Multinomial self) -> OT::String"""
        return _dist_bundle2.Multinomial___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Multinomial self, OT::String const & offset="") -> OT::String
        __str__(Multinomial self) -> OT::String
        """
        return _dist_bundle2.Multinomial___str__(self, offset)

    def getRealization(self):
        """getRealization(Multinomial self) -> NumericalPoint"""
        return _dist_bundle2.Multinomial_getRealization(self)

    def computePDF(self, *args):
        """
        computePDF(Multinomial self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(Multinomial self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(Multinomial self, NumericalSample sample) -> NumericalSample
        computePDF(Multinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Multinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(Multinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(Multinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(Multinomial self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Multinomial_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(Multinomial self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Multinomial self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(Multinomial self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Multinomial self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(Multinomial self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(Multinomial self, NumericalSample sample) -> NumericalSample
        computeCDF(Multinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Multinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(Multinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Multinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(Multinomial self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Multinomial_computeCDF(self, *args)

    def computeConditionalPDF(self, *args):
        """computeConditionalPDF(Multinomial self, OT::NumericalScalar const x, NumericalPoint y) -> OT::NumericalScalar"""
        return _dist_bundle2.Multinomial_computeConditionalPDF(self, *args)

    def computeConditionalCDF(self, *args):
        """computeConditionalCDF(Multinomial self, OT::NumericalScalar const x, NumericalPoint y) -> OT::NumericalScalar"""
        return _dist_bundle2.Multinomial_computeConditionalCDF(self, *args)

    def computeConditionalQuantile(self, *args):
        """computeConditionalQuantile(Multinomial self, OT::NumericalScalar const q, NumericalPoint y) -> OT::NumericalScalar"""
        return _dist_bundle2.Multinomial_computeConditionalQuantile(self, *args)

    def getMarginal(self, *args):
        """
        getMarginal(Multinomial self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(Multinomial self, Indices indices) -> DistributionImplementationPointer
        getMarginal(Multinomial self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(Multinomial self, Indices indices) -> DistributionImplementationPointer
        """
        return _dist_bundle2.Multinomial_getMarginal(self, *args)

    def getSupport(self, *args):
        """
        getSupport(Multinomial self, Interval interval) -> NumericalSample
        getSupport(Multinomial self, Interval interval) -> NumericalSample
        getSupport(Multinomial self) -> NumericalSample
        """
        return _dist_bundle2.Multinomial_getSupport(self, *args)

    def getParametersCollection(self):
        """getParametersCollection(Multinomial self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.Multinomial_getParametersCollection(self)

    def setP(self, *args):
        """setP(Multinomial self, NumericalPoint p)"""
        return _dist_bundle2.Multinomial_setP(self, *args)

    def getP(self):
        """getP(Multinomial self) -> NumericalPoint"""
        return _dist_bundle2.Multinomial_getP(self)

    def setN(self, *args):
        """setN(Multinomial self, OT::UnsignedLong const n)"""
        return _dist_bundle2.Multinomial_setN(self, *args)

    def getN(self):
        """getN(Multinomial self) -> OT::UnsignedLong"""
        return _dist_bundle2.Multinomial_getN(self)

    def __init__(self, *args): 
        """
        __init__(OT::Multinomial self) -> Multinomial
        __init__(OT::Multinomial self, OT::UnsignedLong const n, NumericalPoint p) -> Multinomial
        __init__(OT::Multinomial self, Multinomial other) -> Multinomial
        """
        this = _dist_bundle2.new_Multinomial(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_Multinomial
    __del__ = lambda self : None;
Multinomial_swigregister = _dist_bundle2.Multinomial_swigregister
Multinomial_swigregister(Multinomial)

def Multinomial_GetClassName():
  """Multinomial_GetClassName() -> OT::String"""
  return _dist_bundle2.Multinomial_GetClassName()

class MultinomialFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::MultinomialFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, MultinomialFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, MultinomialFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.MultinomialFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(MultinomialFactory self) -> OT::String"""
        return _dist_bundle2.MultinomialFactory_getClassName(self)

    def build(self, *args):
        """
        build(MultinomialFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(MultinomialFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(MultinomialFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(MultinomialFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(MultinomialFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(MultinomialFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.MultinomialFactory_build(self, *args)

    def buildAsMultinomial(self, *args):
        """
        buildAsMultinomial(MultinomialFactory self, NumericalSample sample) -> Multinomial
        buildAsMultinomial(MultinomialFactory self) -> Multinomial
        """
        return _dist_bundle2.MultinomialFactory_buildAsMultinomial(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::MultinomialFactory self) -> MultinomialFactory
        __init__(OT::MultinomialFactory self, MultinomialFactory other) -> MultinomialFactory
        """
        this = _dist_bundle2.new_MultinomialFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_MultinomialFactory
    __del__ = lambda self : None;
MultinomialFactory_swigregister = _dist_bundle2.MultinomialFactory_swigregister
MultinomialFactory_swigregister(MultinomialFactory)

def MultinomialFactory_GetClassName():
  """MultinomialFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.MultinomialFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(NegativeBinomial self) -> OT::String"""
        return _dist_bundle2.NegativeBinomial_getClassName(self)

    def __eq__(self, *args):
        """__eq__(NegativeBinomial self, NegativeBinomial other) -> OT::Bool"""
        return _dist_bundle2.NegativeBinomial___eq__(self, *args)

    def __repr__(self):
        """__repr__(NegativeBinomial self) -> OT::String"""
        return _dist_bundle2.NegativeBinomial___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(NegativeBinomial self, OT::String const & offset="") -> OT::String
        __str__(NegativeBinomial self) -> OT::String
        """
        return _dist_bundle2.NegativeBinomial___str__(self, offset)

    def getRealization(self):
        """getRealization(NegativeBinomial self) -> NumericalPoint"""
        return _dist_bundle2.NegativeBinomial_getRealization(self)

    def computePDF(self, *args):
        """
        computePDF(NegativeBinomial self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(NegativeBinomial self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(NegativeBinomial self, NumericalSample sample) -> NumericalSample
        computePDF(NegativeBinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(NegativeBinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(NegativeBinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(NegativeBinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(NegativeBinomial self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.NegativeBinomial_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(NegativeBinomial self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(NegativeBinomial self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(NegativeBinomial self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(NegativeBinomial self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(NegativeBinomial self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(NegativeBinomial self, NumericalSample sample) -> NumericalSample
        computeCDF(NegativeBinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(NegativeBinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(NegativeBinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(NegativeBinomial self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(NegativeBinomial self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.NegativeBinomial_computeCDF(self, *args)

    def computeComplementaryCDF(self, *args):
        """
        computeComplementaryCDF(NegativeBinomial self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeComplementaryCDF(NegativeBinomial self, NumericalPoint point) -> OT::NumericalScalar
        computeComplementaryCDF(NegativeBinomial self, NumericalSample sample) -> NumericalSample
        computeComplementaryCDF(NegativeBinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeComplementaryCDF(NegativeBinomial self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeComplementaryCDF(NegativeBinomial self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.NegativeBinomial_computeComplementaryCDF(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(NegativeBinomial self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.NegativeBinomial_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(NegativeBinomial self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.NegativeBinomial_computeCDFGradient(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(NegativeBinomial self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.NegativeBinomial_computeCharacteristicFunction(self, *args)

    def computeLogCharacteristicFunction(self, *args):
        """computeLogCharacteristicFunction(NegativeBinomial self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.NegativeBinomial_computeLogCharacteristicFunction(self, *args)

    def computeGeneratingFunction(self, *args):
        """computeGeneratingFunction(NegativeBinomial self, OT::NumericalComplex const & z) -> OT::NumericalComplex"""
        return _dist_bundle2.NegativeBinomial_computeGeneratingFunction(self, *args)

    def computeLogGeneratingFunction(self, *args):
        """computeLogGeneratingFunction(NegativeBinomial self, OT::NumericalComplex const & z) -> OT::NumericalComplex"""
        return _dist_bundle2.NegativeBinomial_computeLogGeneratingFunction(self, *args)

    def getSupport(self, *args):
        """
        getSupport(NegativeBinomial self, Interval interval) -> NumericalSample
        getSupport(NegativeBinomial self) -> NumericalSample
        getSupport(NegativeBinomial self, Interval interval) -> NumericalSample
        """
        return _dist_bundle2.NegativeBinomial_getSupport(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(NegativeBinomial self) -> NumericalPoint"""
        return _dist_bundle2.NegativeBinomial_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(NegativeBinomial self) -> NumericalPoint"""
        return _dist_bundle2.NegativeBinomial_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(NegativeBinomial self) -> NumericalPoint"""
        return _dist_bundle2.NegativeBinomial_getKurtosis(self)

    def getParametersCollection(self):
        """getParametersCollection(NegativeBinomial self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.NegativeBinomial_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(NegativeBinomial self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(NegativeBinomial self, NumericalPointCollection parametersCollection)
        setParametersCollection(NegativeBinomial self, NumericalPoint parameters)
        setParametersCollection(NegativeBinomial self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.NegativeBinomial_setParametersCollection(self, *args)

    def setP(self, *args):
        """setP(NegativeBinomial self, OT::NumericalScalar const p)"""
        return _dist_bundle2.NegativeBinomial_setP(self, *args)

    def getP(self):
        """getP(NegativeBinomial self) -> OT::NumericalScalar"""
        return _dist_bundle2.NegativeBinomial_getP(self)

    def setR(self, *args):
        """setR(NegativeBinomial self, OT::NumericalScalar const r)"""
        return _dist_bundle2.NegativeBinomial_setR(self, *args)

    def getR(self):
        """getR(NegativeBinomial self) -> OT::NumericalScalar"""
        return _dist_bundle2.NegativeBinomial_getR(self)

    def __init__(self, *args): 
        """
        __init__(OT::NegativeBinomial self) -> NegativeBinomial
        __init__(OT::NegativeBinomial self, OT::NumericalScalar const r, OT::NumericalScalar const p) -> NegativeBinomial
        __init__(OT::NegativeBinomial self, NegativeBinomial other) -> NegativeBinomial
        """
        this = _dist_bundle2.new_NegativeBinomial(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_NegativeBinomial
    __del__ = lambda self : None;
NegativeBinomial_swigregister = _dist_bundle2.NegativeBinomial_swigregister
NegativeBinomial_swigregister(NegativeBinomial)

def NegativeBinomial_GetClassName():
  """NegativeBinomial_GetClassName() -> OT::String"""
  return _dist_bundle2.NegativeBinomial_GetClassName()

class NegativeBinomialFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::NegativeBinomialFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, NegativeBinomialFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, NegativeBinomialFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.NegativeBinomialFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(NegativeBinomialFactory self) -> OT::String"""
        return _dist_bundle2.NegativeBinomialFactory_getClassName(self)

    def build(self, *args):
        """
        build(NegativeBinomialFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(NegativeBinomialFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(NegativeBinomialFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(NegativeBinomialFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(NegativeBinomialFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(NegativeBinomialFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(NegativeBinomialFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.NegativeBinomialFactory_build(self, *args)

    def buildAsNegativeBinomial(self, *args):
        """
        buildAsNegativeBinomial(NegativeBinomialFactory self, NumericalSample sample) -> NegativeBinomial
        buildAsNegativeBinomial(NegativeBinomialFactory self, NumericalPointCollection parameters) -> NegativeBinomial
        buildAsNegativeBinomial(NegativeBinomialFactory self, NumericalPointWithDescriptionCollection parameters) -> NegativeBinomial
        buildAsNegativeBinomial(NegativeBinomialFactory self) -> NegativeBinomial
        """
        return _dist_bundle2.NegativeBinomialFactory_buildAsNegativeBinomial(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::NegativeBinomialFactory self) -> NegativeBinomialFactory
        __init__(OT::NegativeBinomialFactory self, NegativeBinomialFactory other) -> NegativeBinomialFactory
        """
        this = _dist_bundle2.new_NegativeBinomialFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_NegativeBinomialFactory
    __del__ = lambda self : None;
NegativeBinomialFactory_swigregister = _dist_bundle2.NegativeBinomialFactory_swigregister
NegativeBinomialFactory_swigregister(NegativeBinomialFactory)

def NegativeBinomialFactory_GetClassName():
  """NegativeBinomialFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.NegativeBinomialFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(NonCentralChiSquare self) -> OT::String"""
        return _dist_bundle2.NonCentralChiSquare_getClassName(self)

    def __eq__(self, *args):
        """__eq__(NonCentralChiSquare self, NonCentralChiSquare other) -> OT::Bool"""
        return _dist_bundle2.NonCentralChiSquare___eq__(self, *args)

    def __repr__(self):
        """__repr__(NonCentralChiSquare self) -> OT::String"""
        return _dist_bundle2.NonCentralChiSquare___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(NonCentralChiSquare self, OT::String const & offset="") -> OT::String
        __str__(NonCentralChiSquare self) -> OT::String
        """
        return _dist_bundle2.NonCentralChiSquare___str__(self, offset)

    def getRealization(self):
        """getRealization(NonCentralChiSquare self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralChiSquare_getRealization(self)

    def computePDF(self, *args):
        """
        computePDF(NonCentralChiSquare self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(NonCentralChiSquare self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(NonCentralChiSquare self, NumericalSample sample) -> NumericalSample
        computePDF(NonCentralChiSquare self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(NonCentralChiSquare self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(NonCentralChiSquare self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(NonCentralChiSquare self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(NonCentralChiSquare self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.NonCentralChiSquare_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(NonCentralChiSquare self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(NonCentralChiSquare self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(NonCentralChiSquare self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(NonCentralChiSquare self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(NonCentralChiSquare self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(NonCentralChiSquare self, NumericalSample sample) -> NumericalSample
        computeCDF(NonCentralChiSquare self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(NonCentralChiSquare self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(NonCentralChiSquare self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(NonCentralChiSquare self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(NonCentralChiSquare self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.NonCentralChiSquare_computeCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """computeCharacteristicFunction(NonCentralChiSquare self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.NonCentralChiSquare_computeCharacteristicFunction(self, *args)

    def computeLogCharacteristicFunction(self, *args):
        """computeLogCharacteristicFunction(NonCentralChiSquare self, OT::NumericalScalar const x) -> OT::NumericalComplex"""
        return _dist_bundle2.NonCentralChiSquare_computeLogCharacteristicFunction(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(NonCentralChiSquare self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.NonCentralChiSquare_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(NonCentralChiSquare self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.NonCentralChiSquare_computeCDFGradient(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(NonCentralChiSquare self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralChiSquare_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(NonCentralChiSquare self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralChiSquare_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(NonCentralChiSquare self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralChiSquare_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(NonCentralChiSquare self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.NonCentralChiSquare_getStandardMoment(self, *args)

    def getParametersCollection(self):
        """getParametersCollection(NonCentralChiSquare self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.NonCentralChiSquare_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(NonCentralChiSquare self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(NonCentralChiSquare self, NumericalPointCollection parametersCollection)
        setParametersCollection(NonCentralChiSquare self, NumericalPoint parameters)
        setParametersCollection(NonCentralChiSquare self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.NonCentralChiSquare_setParametersCollection(self, *args)

    def setNu(self, *args):
        """setNu(NonCentralChiSquare self, OT::NumericalScalar const nu)"""
        return _dist_bundle2.NonCentralChiSquare_setNu(self, *args)

    def setNuLambda(self, *args):
        """setNuLambda(NonCentralChiSquare self, OT::NumericalScalar const nu, OT::NumericalScalar const _lambda)"""
        return _dist_bundle2.NonCentralChiSquare_setNuLambda(self, *args)

    def getNu(self):
        """getNu(NonCentralChiSquare self) -> OT::NumericalScalar"""
        return _dist_bundle2.NonCentralChiSquare_getNu(self)

    def setLambda(self, *args):
        """setLambda(NonCentralChiSquare self, OT::NumericalScalar const _lambda)"""
        return _dist_bundle2.NonCentralChiSquare_setLambda(self, *args)

    def getLambda(self):
        """getLambda(NonCentralChiSquare self) -> OT::NumericalScalar"""
        return _dist_bundle2.NonCentralChiSquare_getLambda(self)

    def __init__(self, *args): 
        """
        __init__(OT::NonCentralChiSquare self, OT::NumericalScalar const nu=5.0, OT::NumericalScalar const _lambda=0.0) -> NonCentralChiSquare
        __init__(OT::NonCentralChiSquare self, OT::NumericalScalar const nu=5.0) -> NonCentralChiSquare
        __init__(OT::NonCentralChiSquare self) -> NonCentralChiSquare
        __init__(OT::NonCentralChiSquare self, NonCentralChiSquare other) -> NonCentralChiSquare
        """
        this = _dist_bundle2.new_NonCentralChiSquare(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_NonCentralChiSquare
    __del__ = lambda self : None;
NonCentralChiSquare_swigregister = _dist_bundle2.NonCentralChiSquare_swigregister
NonCentralChiSquare_swigregister(NonCentralChiSquare)

def NonCentralChiSquare_GetClassName():
  """NonCentralChiSquare_GetClassName() -> OT::String"""
  return _dist_bundle2.NonCentralChiSquare_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(NonCentralStudent self) -> OT::String"""
        return _dist_bundle2.NonCentralStudent_getClassName(self)

    def __eq__(self, *args):
        """__eq__(NonCentralStudent self, NonCentralStudent other) -> OT::Bool"""
        return _dist_bundle2.NonCentralStudent___eq__(self, *args)

    def __repr__(self):
        """__repr__(NonCentralStudent self) -> OT::String"""
        return _dist_bundle2.NonCentralStudent___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(NonCentralStudent self, OT::String const & offset="") -> OT::String
        __str__(NonCentralStudent self) -> OT::String
        """
        return _dist_bundle2.NonCentralStudent___str__(self, offset)

    def getRealization(self):
        """getRealization(NonCentralStudent self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralStudent_getRealization(self)

    def computePDF(self, *args):
        """
        computePDF(NonCentralStudent self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(NonCentralStudent self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(NonCentralStudent self, NumericalSample sample) -> NumericalSample
        computePDF(NonCentralStudent self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(NonCentralStudent self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(NonCentralStudent self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(NonCentralStudent self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(NonCentralStudent self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.NonCentralStudent_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(NonCentralStudent self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(NonCentralStudent self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(NonCentralStudent self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(NonCentralStudent self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(NonCentralStudent self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(NonCentralStudent self, NumericalSample sample) -> NumericalSample
        computeCDF(NonCentralStudent self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(NonCentralStudent self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(NonCentralStudent self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(NonCentralStudent self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(NonCentralStudent self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.NonCentralStudent_computeCDF(self, *args)

    def computePDFGradient(self, *args):
        """computePDFGradient(NonCentralStudent self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.NonCentralStudent_computePDFGradient(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(NonCentralStudent self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.NonCentralStudent_computeCDFGradient(self, *args)

    def getStandardDeviation(self):
        """getStandardDeviation(NonCentralStudent self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralStudent_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(NonCentralStudent self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralStudent_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(NonCentralStudent self) -> NumericalPoint"""
        return _dist_bundle2.NonCentralStudent_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(NonCentralStudent self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.NonCentralStudent_getStandardMoment(self, *args)

    def getStandardRepresentative(self):
        """getStandardRepresentative(NonCentralStudent self) -> DistributionImplementationPointer"""
        return _dist_bundle2.NonCentralStudent_getStandardRepresentative(self)

    def getParametersCollection(self):
        """getParametersCollection(NonCentralStudent self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.NonCentralStudent_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(NonCentralStudent self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(NonCentralStudent self, NumericalPointCollection parametersCollection)
        setParametersCollection(NonCentralStudent self, NumericalPoint parameters)
        setParametersCollection(NonCentralStudent self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.NonCentralStudent_setParametersCollection(self, *args)

    def setNu(self, *args):
        """setNu(NonCentralStudent self, OT::NumericalScalar const nu)"""
        return _dist_bundle2.NonCentralStudent_setNu(self, *args)

    def getNu(self):
        """getNu(NonCentralStudent self) -> OT::NumericalScalar"""
        return _dist_bundle2.NonCentralStudent_getNu(self)

    def setDelta(self, *args):
        """setDelta(NonCentralStudent self, OT::NumericalScalar const delta)"""
        return _dist_bundle2.NonCentralStudent_setDelta(self, *args)

    def getDelta(self):
        """getDelta(NonCentralStudent self) -> OT::NumericalScalar"""
        return _dist_bundle2.NonCentralStudent_getDelta(self)

    def setGamma(self, *args):
        """setGamma(NonCentralStudent self, OT::NumericalScalar const gamma)"""
        return _dist_bundle2.NonCentralStudent_setGamma(self, *args)

    def getGamma(self):
        """getGamma(NonCentralStudent self) -> OT::NumericalScalar"""
        return _dist_bundle2.NonCentralStudent_getGamma(self)

    def __init__(self, *args): 
        """
        __init__(OT::NonCentralStudent self, OT::NumericalScalar const nu=5.0, OT::NumericalScalar const delta=0.0, OT::NumericalScalar const gamma=0.0) -> NonCentralStudent
        __init__(OT::NonCentralStudent self, OT::NumericalScalar const nu=5.0, OT::NumericalScalar const delta=0.0) -> NonCentralStudent
        __init__(OT::NonCentralStudent self, OT::NumericalScalar const nu=5.0) -> NonCentralStudent
        __init__(OT::NonCentralStudent self) -> NonCentralStudent
        __init__(OT::NonCentralStudent self, NonCentralStudent other) -> NonCentralStudent
        """
        this = _dist_bundle2.new_NonCentralStudent(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_NonCentralStudent
    __del__ = lambda self : None;
NonCentralStudent_swigregister = _dist_bundle2.NonCentralStudent_swigregister
NonCentralStudent_swigregister(NonCentralStudent)

def NonCentralStudent_GetClassName():
  """NonCentralStudent_GetClassName() -> OT::String"""
  return _dist_bundle2.NonCentralStudent_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Normal self) -> OT::String"""
        return _dist_bundle2.Normal_getClassName(self)

    def __repr__(self):
        """__repr__(Normal self) -> OT::String"""
        return _dist_bundle2.Normal___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Normal self, OT::String const & offset="") -> OT::String
        __str__(Normal self) -> OT::String
        """
        return _dist_bundle2.Normal___str__(self, offset)

    def computeDensityGenerator(self, *args):
        """computeDensityGenerator(Normal self, OT::NumericalScalar const betaSquare) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_computeDensityGenerator(self, *args)

    def computeDensityGeneratorDerivative(self, *args):
        """computeDensityGeneratorDerivative(Normal self, OT::NumericalScalar const betaSquare) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_computeDensityGeneratorDerivative(self, *args)

    def computeDensityGeneratorSecondDerivative(self, *args):
        """computeDensityGeneratorSecondDerivative(Normal self, OT::NumericalScalar const betaSquare) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_computeDensityGeneratorSecondDerivative(self, *args)

    def getRealization(self):
        """getRealization(Normal self) -> NumericalPoint"""
        return _dist_bundle2.Normal_getRealization(self)

    def getSample(self, *args):
        """getSample(Normal self, OT::UnsignedLong const size) -> NumericalSample"""
        return _dist_bundle2.Normal_getSample(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(Normal self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Normal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(Normal self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(Normal self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(Normal self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(Normal self, NumericalSample sample) -> NumericalSample
        computeCDF(Normal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Normal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(Normal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(Normal self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(Normal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Normal_computeCDF(self, *args)

    def computeComplementaryCDF(self, *args):
        """
        computeComplementaryCDF(Normal self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeComplementaryCDF(Normal self, NumericalPoint point) -> OT::NumericalScalar
        computeComplementaryCDF(Normal self, NumericalSample sample) -> NumericalSample
        computeComplementaryCDF(Normal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeComplementaryCDF(Normal self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeComplementaryCDF(Normal self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.Normal_computeComplementaryCDF(self, *args)

    def computeCharacteristicFunction(self, *args):
        """
        computeCharacteristicFunction(Normal self, OT::NumericalScalar const x) -> OT::NumericalComplex
        computeCharacteristicFunction(Normal self, NumericalPoint x) -> OT::NumericalComplex
        """
        return _dist_bundle2.Normal_computeCharacteristicFunction(self, *args)

    def computeLogCharacteristicFunction(self, *args):
        """
        computeLogCharacteristicFunction(Normal self, OT::NumericalScalar const x) -> OT::NumericalComplex
        computeLogCharacteristicFunction(Normal self, NumericalPoint x) -> OT::NumericalComplex
        """
        return _dist_bundle2.Normal_computeLogCharacteristicFunction(self, *args)

    def computeProbability(self, *args):
        """computeProbability(Normal self, Interval interval) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_computeProbability(self, *args)

    def computeCDFGradient(self, *args):
        """computeCDFGradient(Normal self, NumericalPoint point) -> NumericalPoint"""
        return _dist_bundle2.Normal_computeCDFGradient(self, *args)

    def computeRadialDistributionCDF(self, *args):
        """
        computeRadialDistributionCDF(Normal self, OT::NumericalScalar const radius, OT::Bool const tail=False) -> OT::NumericalScalar
        computeRadialDistributionCDF(Normal self, OT::NumericalScalar const radius) -> OT::NumericalScalar
        """
        return _dist_bundle2.Normal_computeRadialDistributionCDF(self, *args)

    def computeConditionalPDF(self, *args):
        """computeConditionalPDF(Normal self, OT::NumericalScalar const x, NumericalPoint y) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_computeConditionalPDF(self, *args)

    def computeConditionalCDF(self, *args):
        """computeConditionalCDF(Normal self, OT::NumericalScalar const x, NumericalPoint y) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_computeConditionalCDF(self, *args)

    def computeConditionalQuantile(self, *args):
        """computeConditionalQuantile(Normal self, OT::NumericalScalar const q, NumericalPoint y) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_computeConditionalQuantile(self, *args)

    def getMarginal(self, *args):
        """
        getMarginal(Normal self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(Normal self, Indices indices) -> DistributionImplementationPointer
        """
        return _dist_bundle2.Normal_getMarginal(self, *args)

    def getRoughness(self):
        """getRoughness(Normal self) -> OT::NumericalScalar"""
        return _dist_bundle2.Normal_getRoughness(self)

    def getSkewness(self):
        """getSkewness(Normal self) -> NumericalPoint"""
        return _dist_bundle2.Normal_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(Normal self) -> NumericalPoint"""
        return _dist_bundle2.Normal_getKurtosis(self)

    def getStandardMoment(self, *args):
        """getStandardMoment(Normal self, OT::UnsignedLong const n) -> NumericalPoint"""
        return _dist_bundle2.Normal_getStandardMoment(self, *args)

    def getStandardRepresentative(self):
        """getStandardRepresentative(Normal self) -> DistributionImplementationPointer"""
        return _dist_bundle2.Normal_getStandardRepresentative(self)

    def setCorrelation(self, *args):
        """setCorrelation(Normal self, CorrelationMatrix R)"""
        return _dist_bundle2.Normal_setCorrelation(self, *args)

    def getCopula(self):
        """getCopula(Normal self) -> DistributionImplementationPointer"""
        return _dist_bundle2.Normal_getCopula(self)

    def hasIndependentCopula(self):
        """hasIndependentCopula(Normal self) -> OT::Bool"""
        return _dist_bundle2.Normal_hasIndependentCopula(self)

    def __init__(self, *args): 
        """
        __init__(OT::Normal self, OT::UnsignedLong const dimension=1) -> Normal
        __init__(OT::Normal self) -> Normal
        __init__(OT::Normal self, OT::NumericalScalar const mu, OT::NumericalScalar const sd) -> Normal
        __init__(OT::Normal self, NumericalPoint mean, NumericalPoint sigma, CorrelationMatrix R) -> Normal
        __init__(OT::Normal self, NumericalPoint mean, CovarianceMatrix C) -> Normal
        __init__(OT::Normal self, Normal other) -> Normal
        """
        this = _dist_bundle2.new_Normal(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_Normal
    __del__ = lambda self : None;
Normal_swigregister = _dist_bundle2.Normal_swigregister
Normal_swigregister(Normal)

def Normal_GetClassName():
  """Normal_GetClassName() -> OT::String"""
  return _dist_bundle2.Normal_GetClassName()

class NormalFactory(openturns.model_copula.DistributionImplementationFactory):
    """Proxy of C++ OT::NormalFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, NormalFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.model_copula.DistributionImplementationFactory]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, NormalFactory, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _dist_bundle2.NormalFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(NormalFactory self) -> OT::String"""
        return _dist_bundle2.NormalFactory_getClassName(self)

    def build(self, *args):
        """
        build(NormalFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(NormalFactory self, NumericalSample sample, CovarianceMatrix covariance) -> DistributionImplementationPointer
        build(NormalFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(NormalFactory self, NumericalPointWithDescriptionCollection parameters) -> DistributionImplementationPointer
        build(NormalFactory self, NumericalSample sample) -> DistributionImplementationPointer
        build(NormalFactory self, NumericalPointCollection parameters) -> DistributionImplementationPointer
        build(NormalFactory self) -> DistributionImplementationPointer
        """
        return _dist_bundle2.NormalFactory_build(self, *args)

    def buildAsNormal(self, *args):
        """
        buildAsNormal(NormalFactory self, NumericalSample sample) -> Normal
        buildAsNormal(NormalFactory self, NumericalPointCollection parameters) -> Normal
        buildAsNormal(NormalFactory self, NumericalPointWithDescriptionCollection parameters) -> Normal
        buildAsNormal(NormalFactory self) -> Normal
        """
        return _dist_bundle2.NormalFactory_buildAsNormal(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::NormalFactory self) -> NormalFactory
        __init__(OT::NormalFactory self, NormalFactory other) -> NormalFactory
        """
        this = _dist_bundle2.new_NormalFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_NormalFactory
    __del__ = lambda self : None;
NormalFactory_swigregister = _dist_bundle2.NormalFactory_swigregister
NormalFactory_swigregister(NormalFactory)

def NormalFactory_GetClassName():
  """NormalFactory_GetClassName() -> OT::String"""
  return _dist_bundle2.NormalFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ConditionalDistribution self) -> OT::String"""
        return _dist_bundle2.ConditionalDistribution_getClassName(self)

    def __eq__(self, *args):
        """__eq__(ConditionalDistribution self, ConditionalDistribution other) -> OT::Bool"""
        return _dist_bundle2.ConditionalDistribution___eq__(self, *args)

    def __repr__(self):
        """__repr__(ConditionalDistribution self) -> OT::String"""
        return _dist_bundle2.ConditionalDistribution___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ConditionalDistribution self, OT::String const & offset="") -> OT::String
        __str__(ConditionalDistribution self) -> OT::String
        """
        return _dist_bundle2.ConditionalDistribution___str__(self, offset)

    def getRealization(self):
        """getRealization(ConditionalDistribution self) -> NumericalPoint"""
        return _dist_bundle2.ConditionalDistribution_getRealization(self)

    def getParametersCollection(self):
        """getParametersCollection(ConditionalDistribution self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.ConditionalDistribution_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(ConditionalDistribution self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(ConditionalDistribution self, NumericalPointCollection parametersCollection)
        setParametersCollection(ConditionalDistribution self, NumericalPoint parameters)
        setParametersCollection(ConditionalDistribution self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.ConditionalDistribution_setParametersCollection(self, *args)

    def setConditionedDistribution(self, *args):
        """setConditionedDistribution(ConditionalDistribution self, Distribution conditionedDistribution)"""
        return _dist_bundle2.ConditionalDistribution_setConditionedDistribution(self, *args)

    def getConditionedDistribution(self):
        """getConditionedDistribution(ConditionalDistribution self) -> Distribution"""
        return _dist_bundle2.ConditionalDistribution_getConditionedDistribution(self)

    def setConditioningDistribution(self, *args):
        """setConditioningDistribution(ConditionalDistribution self, Distribution conditioningDistribution)"""
        return _dist_bundle2.ConditionalDistribution_setConditioningDistribution(self, *args)

    def getConditioningDistribution(self):
        """getConditioningDistribution(ConditionalDistribution self) -> Distribution"""
        return _dist_bundle2.ConditionalDistribution_getConditioningDistribution(self)

    def getMarginal(self, *args):
        """
        getMarginal(ConditionalDistribution self, OT::UnsignedLong const i) -> DistributionImplementationPointer
        getMarginal(ConditionalDistribution self, Indices indices) -> DistributionImplementationPointer
        """
        return _dist_bundle2.ConditionalDistribution_getMarginal(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::ConditionalDistribution self) -> ConditionalDistribution
        __init__(OT::ConditionalDistribution self, Distribution conditionedDistribution, Distribution conditioningDistribution) -> ConditionalDistribution
        __init__(OT::ConditionalDistribution self, ConditionalDistribution other) -> ConditionalDistribution
        """
        this = _dist_bundle2.new_ConditionalDistribution(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_ConditionalDistribution
    __del__ = lambda self : None;
ConditionalDistribution_swigregister = _dist_bundle2.ConditionalDistribution_swigregister
ConditionalDistribution_swigregister(ConditionalDistribution)

def ConditionalDistribution_GetClassName():
  """ConditionalDistribution_GetClassName() -> OT::String"""
  return _dist_bundle2.ConditionalDistribution_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(PosteriorDistribution self) -> OT::String"""
        return _dist_bundle2.PosteriorDistribution_getClassName(self)

    def __eq__(self, *args):
        """__eq__(PosteriorDistribution self, PosteriorDistribution other) -> OT::Bool"""
        return _dist_bundle2.PosteriorDistribution___eq__(self, *args)

    def __repr__(self):
        """__repr__(PosteriorDistribution self) -> OT::String"""
        return _dist_bundle2.PosteriorDistribution___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(PosteriorDistribution self, OT::String const & offset="") -> OT::String
        __str__(PosteriorDistribution self) -> OT::String
        """
        return _dist_bundle2.PosteriorDistribution___str__(self, offset)

    def computePDF(self, *args):
        """
        computePDF(PosteriorDistribution self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computePDF(PosteriorDistribution self, NumericalPoint point) -> OT::NumericalScalar
        computePDF(PosteriorDistribution self, NumericalSample sample) -> NumericalSample
        computePDF(PosteriorDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(PosteriorDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computePDF(PosteriorDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultPDFEpsilon")) -> NumericalSample
        computePDF(PosteriorDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computePDF(PosteriorDistribution self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.PosteriorDistribution_computePDF(self, *args)

    def computeCDF(self, *args):
        """
        computeCDF(PosteriorDistribution self, OT::NumericalScalar const scalar, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(PosteriorDistribution self, OT::NumericalScalar const scalar) -> OT::NumericalScalar
        computeCDF(PosteriorDistribution self, NumericalPoint point, OT::Bool const tail) -> OT::NumericalScalar
        computeCDF(PosteriorDistribution self, NumericalPoint point) -> OT::NumericalScalar
        computeCDF(PosteriorDistribution self, NumericalSample sample, OT::Bool const tail) -> NumericalSample
        computeCDF(PosteriorDistribution self, NumericalSample sample) -> NumericalSample
        computeCDF(PosteriorDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid, OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(PosteriorDistribution self, OT::NumericalScalar const xMin, OT::NumericalScalar const xMax, OT::UnsignedLong const pointNumber, 
            NumericalSample grid) -> NumericalSample
        computeCDF(PosteriorDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid, 
            OT::NumericalScalar const precision=OT::ResourceMap::GetAsNumericalScalar("DistributionImplementation-DefaultCDFEpsilon")) -> NumericalSample
        computeCDF(PosteriorDistribution self, NumericalPoint xMin, NumericalPoint xMax, Indices pointNumber, NumericalSample grid) -> NumericalSample
        computeCDF(PosteriorDistribution self, NumericalPoint point) -> OT::NumericalScalar
        """
        return _dist_bundle2.PosteriorDistribution_computeCDF(self, *args)

    def getParametersCollection(self):
        """getParametersCollection(PosteriorDistribution self) -> NumericalPointWithDescriptionCollection"""
        return _dist_bundle2.PosteriorDistribution_getParametersCollection(self)

    def setParametersCollection(self, *args):
        """
        setParametersCollection(PosteriorDistribution self, NumericalPointWithDescriptionCollection parametersCollection)
        setParametersCollection(PosteriorDistribution self, NumericalPointCollection parametersCollection)
        setParametersCollection(PosteriorDistribution self, NumericalPoint parameters)
        setParametersCollection(PosteriorDistribution self, NumericalPointCollection parametersCollection)
        """
        return _dist_bundle2.PosteriorDistribution_setParametersCollection(self, *args)

    def setConditionalDistribution(self, *args):
        """setConditionalDistribution(PosteriorDistribution self, ConditionalDistribution conditionalDistribution)"""
        return _dist_bundle2.PosteriorDistribution_setConditionalDistribution(self, *args)

    def getConditionalDistribution(self):
        """getConditionalDistribution(PosteriorDistribution self) -> ConditionalDistribution"""
        return _dist_bundle2.PosteriorDistribution_getConditionalDistribution(self)

    def setObservations(self, *args):
        """setObservations(PosteriorDistribution self, NumericalSample observations)"""
        return _dist_bundle2.PosteriorDistribution_setObservations(self, *args)

    def getObservations(self):
        """getObservations(PosteriorDistribution self) -> NumericalSample"""
        return _dist_bundle2.PosteriorDistribution_getObservations(self)

    def getLogNormalizationFactor(self):
        """getLogNormalizationFactor(PosteriorDistribution self) -> OT::NumericalScalar"""
        return _dist_bundle2.PosteriorDistribution_getLogNormalizationFactor(self)

    def getStandardDeviation(self):
        """getStandardDeviation(PosteriorDistribution self) -> NumericalPoint"""
        return _dist_bundle2.PosteriorDistribution_getStandardDeviation(self)

    def getSkewness(self):
        """getSkewness(PosteriorDistribution self) -> NumericalPoint"""
        return _dist_bundle2.PosteriorDistribution_getSkewness(self)

    def getKurtosis(self):
        """getKurtosis(PosteriorDistribution self) -> NumericalPoint"""
        return _dist_bundle2.PosteriorDistribution_getKurtosis(self)

    def computeLikelihood(self, *args):
        """computeLikelihood(PosteriorDistribution self, NumericalPoint theta) -> NumericalPoint"""
        return _dist_bundle2.PosteriorDistribution_computeLikelihood(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::PosteriorDistribution self) -> PosteriorDistribution
        __init__(OT::PosteriorDistribution self, ConditionalDistribution conditionalDistribution, NumericalSample observations) -> PosteriorDistribution
        __init__(OT::PosteriorDistribution self, PosteriorDistribution other) -> PosteriorDistribution
        """
        this = _dist_bundle2.new_PosteriorDistribution(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _dist_bundle2.delete_PosteriorDistribution
    __del__ = lambda self : None;
PosteriorDistribution_swigregister = _dist_bundle2.PosteriorDistribution_swigregister
PosteriorDistribution_swigregister(PosteriorDistribution)

def PosteriorDistribution_GetClassName():
  """PosteriorDistribution_GetClassName() -> OT::String"""
  return _dist_bundle2.PosteriorDistribution_GetClassName()

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