/usr/include/openturns/swig/AliMikhailHaqCopula_doc.i is in libopenturns-dev 1.7-3.
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 | %feature("docstring") OT::AliMikhailHaqCopula
"AliMikhailHaq copula.
Available constructor:
AliMikhailHaqCopula(*theta=1.0*)
Parameters
----------
theta : float, :math:`-1 \\\\leq \\\\theta \\\\leq 1`
Parameter :math:`\\\\theta`.
Notes
-----
The AliMikhailHaq copula is a bivariate Archimedean copula defined by:
.. math::
C(u_1, u_2) = \\\\frac{u_1 u_2}{1- \\\\theta (1 - u_1)(1 - u_2)}
for :math:`(u_1, u_2) \\\\in [0, 1]^2`
And its generator is:
.. math::
\\\\varphi(t) = \\\\log \\\\left( \\\\frac{1-\\\\theta(1-t)}{t} \\\\right)
See also
--------
ArchimedeanCopula
Examples
--------
Create a distribution:
>>> import openturns as ot
>>> copula = ot.AliMikhailHaqCopula(0.5)
Draw a sample:
>>> sample = copula.getSample(10)"
// ---------------------------------------------------------------------
%feature("docstring") OT::AliMikhailHaqCopula::getTheta
"Get the parameter :math:`\\\\theta`.
Returns
-------
theta : float
Parameter :math:`\\\\theta` of the copula."
// ---------------------------------------------------------------------
%feature("docstring") OT::AliMikhailHaqCopula::setTheta
"Set the parameter :math:`\\\\theta`.
Parameters
----------
theta : float, :math:`-1 \\\\leq \\\\theta \\\\leq 1`
Parameter :math:`\\\\theta` of the copula."
|