vote up 2 vote down star

Can anyone point out a good C++ library that can do 2D numerical integration. It needs to be able to accept a 2D array of known values, and the spacing between the points can be assumed to be constant (for a start).

It is preferable that it have a license which allows modifying the code as needed.

flag

68% accept rate

2 Answers

vote up 2 vote down

It's actually a C library, but if the GPL licensing terms work for you try:

http://www.gnu.org/software/gsl/

You will want to check out the Monte Carlo integration options outlined here:

http://www.gnu.org/software/gsl/manual/html_node/Monte-Carlo-Integration.html

link|flag
Thanks, I will look into it. I'd rather stay away from Monte Catlo at the moment, though. I prefer to have deterministic results right now. – Gilad Naor Jun 14 at 5:12
vote up 0 vote down

http://itpp.sourceforge.net/current/

Try this. It can do what you ask for and more! And you can modify the code as much as you like.

I've read somewhere that you can extract libraries out of GNU Octave's code and use the C++ code in your own applications. I'm not sure if that's an easy task, but you can give it a try if you have the time.

link|flag
Can you point me to the 2D integration? All I could find was 1D integration (itpp.sourceforge.net/current/…) – Gilad Naor Jun 7 at 10:59
Isn't 2D integration just a double integral? Can't you do it with the same library? – Sahasranaman MS Jun 7 at 11:04
3  
Not in numerical integration. You have more information which you want to use. For each "point" you have four neighbors to interpolate with, unlike 1D. – Gilad Naor Jun 7 at 12:00

Your Answer

Get an OpenID
or

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