Generate random samples from a copula family.
'Gaussian'
for the Gaussian family, 't'
for the Student’s t
family, or 'Clayton'
for the Clayton family.
theta = 0.5; x = copularnd ("Gaussian", theta);
theta = 0.5; nu = 2; x = copularnd ("t", theta, nu);
theta = 0.5; n = 2; x = copularnd ("Clayton", theta, n);
Package: statistics