Integration of multivariate normal cumulative distribution function
Mostrar comentarios más antiguos
Hi everyone, I need to calculate integral of Multivariate normal cumulative distribution function in 3D dimension (double integral). My limits are 0<x1<5 and 0<x2<x1+4. I tried to solve it this way:
fun= @(a,b)(mvncdf(a+b*0.0137,m1,cov1))+(mvncdf(a+b*0.5,m2,cov1));
result=dblquad(fun,1,5,1,5)
Obviosly, it is an incorrect solution.
Maybe you have an idea how to solve it?
I would appreciate your help
1 comentario
Michael
el 8 de Oct. de 2012
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Numerical Integration and Differentiation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!