1%feature("docstring") OT::FarlieGumbelMorgensternCopula
2"FarlieGumbelMorgenstern copula.
3
4Parameters
5----------
6theta : float
7    Parameter :math:`\theta`, :math:`-1 \leq \theta \leq 1`. Default is :math:`\theta=0.5`.
8
9Notes
10-----
11The FarlieGumbelMorgenstern copula is defined by :
12
13.. math::
14
15    C(u_1, u_2) = u_1 u_2 (1- \theta (1 - u_1)(1 - u_2))
16
17for :math:`(u_1, u_2) \in [0, 1]^2`
18
19See also
20--------
21Distribution
22
23Examples
24--------
25Create a distribution:
26
27>>> import openturns as ot
28>>> copula = ot.FarlieGumbelMorgensternCopula(0.7)
29
30Draw a sample:
31
32>>> sample = copula.getSample(5)"
33