1%feature("docstring") OT::MinCopula 2"MinCopula. 3 4Available constructor: 5 MinCopula(*n=2*) 6 7Parameters 8---------- 9n : int 10 Dimension of the copula, :math:`n \geq 1`. Default is :math:`n=2`. 11 12Notes 13----- 14The Min Copula is defined by: 15 16.. math:: 17 18 C(u_1, \cdots, u_n) = \min_{i=1, \cdots, n} u_i 19 20for :math:`u_i \in [0, 1]` 21 22See also 23-------- 24Distribution 25 26Examples 27-------- 28Create a distribution: 29 30>>> import openturns as ot 31>>> copula = ot.MinCopula(2) 32 33Draw a sample: 34 35>>> sample = copula.getSample(5)" 36