How to compute Kendall's plot for Copulas in matlab
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi
I am working on copulas. I'd like to plot Kendall's plot for copulas in matlab. unfortunately such a dunction does not exist.
therefore I wrote mine based on this fuction.
however I think there is something wrongwe the way I coded it. because it acts the same for postive and negative dependencies. Can someboy check the code and say what is wrong with my coding based on the following formula:
my code:
k=1
%% u and v are 2 sets of variables for which I am aiming to compute dependence
for i=1:10;
for j=1:10;
idx=find(u<(.1*i) & v<.1*(j));
C(k)=length(idx);
k=k+1;
end
end
0 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre Probability Distributions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!