How to integrate a distribution function for a specific interval?
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
I computed two distribution function:
[distribution_1,x]=ecdf(X); Distribution_2= f(distribution_1);
Now I want to integrate Distribution_2 over the interval [a,b] and tried to use q = integral(fun,xmin,xmax) but I have trouble creating the function handle "fun" in my specific case (since I cannot create the connection to x?)
Thankful for any advice!
5 commentaires
Robert
le 6 Nov 2017
What does the function f do?
Nina
le 6 Nov 2017
Robert
le 6 Nov 2017
Is Distribution_2 also a CDF? Just to be clear, are you trying to integrate the CDF or integrate the corresponding PDF (which you could do by differencing two points on the CDF).
Nina
le 6 Nov 2017
Nina
le 6 Nov 2017
Réponse acceptée
Plus de réponses (1)
David Goodmanson
le 6 Nov 2017
Modifié(e) : David Goodmanson
le 6 Nov 2017
Hi Nina,
If this is not a misinterpretation of the problem, then it seems to work. I am assuming that the function ecdf is already on the Matlab path.
g = .1; h = .2;
fun = @(x) 1-(1-ecdf(x).^(1/(1+g))).^(1+h)
integral(@(x) fun(x), 2,3)
function a = ecdf(x) % for demo purposes
a = sin(x);
end
I'm curious about the idea of integrating a cdf, could you perhaps comment on that?
1 commentaire
Nina
le 7 Nov 2017
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!