Compute the cumulative distribution function of a copula family.
'Gaussian' for the Gaussian family, 't' for the
Student’s t family, 'Clayton' for the Clayton family,
'Gumbel' for the Gumbel-Hougaard family, 'Frank' for
the Frank family, 'AMH' for the Ali-Mikhail-Haq family, or
'FGM' for the Farlie-Gumbel-Morgenstern family.
x = [0.2:0.2:0.6; 0.2:0.2:0.6];
theta = [1; 2];
p = copulacdf ("Clayton", x, theta)
x = [0.2:0.2:0.6; 0.2:0.1:0.4];
theta = [0.2, 0.1, 0.1, 0.05];
p = copulacdf ("FGM", x, theta)
Package: statistics