Is there any library to evaluate multidimensional integrals? I have at least 4 (in general much more than that), where the integrand is a combination of variables, so I cannot separate them. Do you know of any library for numerical evaluation? I'm especially looking for either matlab or c++, but I will use anything that will do the work.

link|improve this question

65% accept rate
feedback

5 Answers

up vote 1 down vote accepted

Since you don't specify the kind of integrals or the actual dimensionality, I can only suggest that you take into account that

$\int_A \int_B f(x, y) \, \mathrm{d} x \, \mathrm{d} y = \int_A F(x) \, \mathrm{d} x$

where the function F(x) is defined as

$x \mapsto F(x) = \int_B f(x, y) \, \mathrm{d} y$

and use this fact to compute your integrals with the usual quadrature techniques. For example, you could use trapz or quad in MATLAB. However, if the dimensionality is truly high, then you are better off using Monte Carlo algorithms.

link|improve this answer
feedback

First link off google.

Seems pretty roboust.

link|improve this answer
feedback

"Numerical Recipes In C" has a very nice chapter on numerical integration.

Maybe Gaussian quadrature can help you out.

link|improve this answer
feedback

Yes there is TESTPACK which is C++ program which demonstrates the testing of a routine for multidimensional integration.

link|improve this answer
feedback

does the integrand have complex terms? or does it blow at some point in the domain?

why don't u just post the integral? the best way to perform an integral can be picked depending on its nature..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.