Bicop.hfunc2_deriv
- Bicop.hfunc2_deriv(self, u: numpy.ndarray, deriv: str, parameters: numpy.ndarray | None = None, num_threads: int = 1) numpy.ndarray
Evaluates a first derivative of the second h-function \(h_2(u_1, u_2) = P(U_1 \le u_1 | U_2 = u_2)\).
derivis one of"par1","par2", … (short form"par"),"u2"(the conditioning argument), or"u1"(which equals the copula density).Notes
If
parametersis given, the copula is evaluated with a different parameter set per row ofuinstead of the stored parameters.parametersis then an(n, p)array with one row per row ofuandp == len(self.parameters)columns, in the family’s natural (unrotated) parameterization, and the evaluation may be parallelized overnum_threads. This is supported for parametric families only; a nonparametric family, a wrong shape, or non-finite or out-of-bounds values raiseRuntimeError.