copularnd
statistics: r = copularnd (family, theta, n)
statistics: r = copularnd (family, theta, n, d)
statistics: r = copularnd (’t’, theta, df, n)
Random arrays from the copula family distributions.
'Gaussian' for the Gaussian family, 't' for the Student’s t
family, 'Clayton' for the Clayton family, 'Frank' for the
Frank family, 'Gumbel' for the Gumbel-Hougaard family, 'AMH'
for the Ali-Mikhail-Haq family, or 'FGM' for the
Farlie-Gumbel-Morgenstern family. The last two are Octave extensions that
MATLAB does not provide. Every family but Clayton is generated as
bivariate only.
NaN rows: at or above 1 for the
Gumbel-Hougaard family, at or above -1 for the bivariate Clayton
family, and any finite value for the Frank family. The Ali-Mikhail-Haq
family takes theta in [-1, 1) and the
Farlie-Gumbel-Morgenstern family in [-1, 1].
theta = 0.5;
r = copularnd ("Gaussian", theta);
theta = 0.5;
df = 2;
r = copularnd ("t", theta, df);
theta = 0.5;
n = 2;
r = copularnd ("Clayton", theta, n);
|
Source Code: copularnd