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
|
#! /usr/bin/env python
from __future__ import print_function
from openturns import *
TESTPREAMBLE()
RandomGenerator.SetSeed(0)
try:
# pStudent
nuMin = 0.2
nuMax = 5.0
n1 = 5
xMin = 0.1
xMax = 0.9
nX = 10
for i1 in range(n1):
nu = nuMin + (nuMax - nuMin) * i1 / (n1 - 1)
for iX in range(nX):
x = xMin + (xMax - xMin) * iX / (nX - 1)
print("pStudent(", nu, ", %.12g" % x, ")=%.6g" % DistFunc.pStudent(
nu, x), ", complementary=%.6g" % DistFunc.pStudent(nu, x, True))
# qStudent
nuMin = 0.2
nuMax = 5.0
n1 = 5
qMin = 0.1
qMax = 0.9
nQ = 10
for i1 in range(n1):
nu = nuMin + (nuMax - nuMin) * i1 / (n1 - 1)
for iQ in range(nQ):
q = qMin + (qMax - qMin) * iQ / (nQ - 1)
print("qStudent(", nu, ", %.12g" % q, ")=%.6g" % DistFunc.qStudent(
nu, q), ", complementary=%.6g" % DistFunc.qStudent(nu, q, True))
# rStudent
nuMin = 0.2
nuMax = 5.0
n1 = 5
nR = 10
for i1 in range(n1):
nu = nuMin + (nuMax - nuMin) * i1 / (n1 - 1)
for iR in range(nR):
print("rStudent(", nu, ")=%.6g" % DistFunc.rStudent(nu))
except:
import sys
print("t_DistFunc_student.py", sys.exc_info()[0], sys.exc_info()[1])
|