## Copyright 2002 by PyMMLib Development Group (see AUTHORS file)
## This code is part of the PyMMLib distrobution and governed by
## its license.  Please see the LICENSE file that should have been
## included as part of this package.
"""Library of tables and classes for analsis of Gaussian probability
distributions.
"""

## trivariate gaussian critical values
GAUSS3C = {
    1:  0.3389,
    2:  0.4299,
    3:  0.4951,
    4:  0.5479,
    5:  0.5932,

    6:  0.6334,
    7:  0.6699,
    8:  0.7035,
    9:  0.7349,
    10: 0.7644,

    11: 0.7924,
    12: 0.8192,
    13: 0.8447,
    14: 0.8694,
    15: 0.8932,

    16: 0.9162,
    17: 0.9386,
    18: 0.9605,
    19: 0.9818,
    20: 1.0026,

    21: 1.0230,
    22: 1.0430,
    23: 1.0627,
    24: 1.0821,
    25: 1.1012,

    26: 1.1200,
    27: 1.1386,
    28: 1.1570,
    29: 1.1751,
    30: 1.1932,

    31: 1.2110,
    32: 1.2288,
    33: 1.2464,
    34: 1.2638,
    35: 1.2812,

    36: 1.2985,
    37: 1.3158,
    38: 1.3330,
    39: 1.3501,
    40: 1.3627,

    41: 1.3842,
    42: 1.4013,
    43: 1.4183,
    44: 1.4354,
    45: 1.4524,

    46: 1.4695,
    47: 1.4866,
    48: 1.5037,
    49: 1.5209,
    50: 1.8724,

    51: 1.5555,
    52: 1.5729,
    53: 1.5904,
    54: 1.6080,
    55: 1.6257,

    56: 1.6436,
    57: 1.6616,
    58: 1.6797,
    59: 1.6980,
    60: 1.7164,

    61: 1.7351,
    62: 1.7540,
    63: 1.7730,
    64: 1.7924,
    65: 1.8119,

    66: 1.8318,
    67: 1.8519,
    68: 1.8724,
    69: 1.8932,
    70: 1.9144,

    71: 1.9360,
    72: 1.9580,
    73: 1.9840,
    74: 2.0034,
    75: 2.0269,

    76: 2.0510,
    77: 2.0757,
    78: 2.1012,
    79: 2.1274,
    80: 2.1544,

    81: 2.1824,
    82: 2.2114,
    83: 2.2416,
    84: 2.2730,
    85: 2.3059,

    86: 2.3404,
    87: 2.3767,
    88: 2.4153,
    89: 2.4563,
    90: 2.5003,

    91: 2.5478,
    92: 2.5997,
    93: 2.6571,
    94: 2.7216,
    95: 2.7955,

    96: 2.8829,
    97: 2.9912,
    98: 3.1365,
    99: 3.3682 }
