Effacer les filtres
Effacer les filtres

how to compute a for cycle in copulapdf varying nu parameter from 1 to 8

2 vues (au cours des 30 derniers jours)
EM geo
EM geo le 28 Août 2018
Commenté : EM geo le 29 Août 2018
I have to use copulapdf command and create different figures from it, varying the parameter nu from 1 to 8. The code for the copula pdf for the nu value=1 is:
nu=1;
r=0.5;
u = linspace(0,1,20);
[u1,u2] = meshgrid(u,u);
rho1 = copulaparam('t',r,nu);
y = copulapdf('t',[u1(:),u2(:)],rho1,nu);
surf(u1,u2,reshape(y,20,20))
xlabel('u1')ylabel('u2')
This script works but i want to find a way to have figures automatically for different values of nu. Can someone help me to write the for cycle for this purpose?

Réponse acceptée

Jeff Miller
Jeff Miller le 29 Août 2018
Not sure if this is what you want, but it looks easy enough. Change the first line to
for nu=1:8
add
end
as the last line. And insert
figure;
before the surf command.
  5 commentaires
Jeff Miller
Jeff Miller le 29 Août 2018
Should be:
xlabel('u1');
ylabel('u2');
EM geo
EM geo le 29 Août 2018
Very good, it works! really really thank you! The final script corrected is:
for nu=1:8
r=0.5;
u = linspace(0,1,20);
[u1,u2] = meshgrid(u,u);
y = copulapdf('t',[u1(:),u2(:)],r,nu);
figure;
surf(u1,u2,reshape(y,20,20))
xlabel('u1');
ylabel('u2');
end

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by