Integration of multivariate normal cumulative distribution function
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Numerical Integration and Differentiation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!