https://github.com/xuhdev/multidiminte
Multi-dimensional Integral using GSL
https://github.com/xuhdev/multidiminte
Last synced: 12 months ago
JSON representation
Multi-dimensional Integral using GSL
- Host: GitHub
- URL: https://github.com/xuhdev/multidiminte
- Owner: xuhdev
- License: gpl-3.0
- Created: 2013-12-02T22:34:57.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-12T21:28:18.000Z (over 12 years ago)
- Last Synced: 2025-06-13T14:06:14.216Z (about 1 year ago)
- Language: C
- Homepage: http://www.topbug.net/multidiminte/
- Size: 430 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
MultiDimInte
============
MultiDimInte is a library which does multi-dimensional numerical integral by applying GSL one-dimensional integration
function repeatedly. No special trick is used in this library -- this is just a convenient wrapper to write such
integral easily.
Before you decide to use this library, I recommend you to look into [Cuba][] and [Monte Carlo Integration in
GSL][GSLMC]. If they don't work out for you, this library might be good for you.
Currently only the use of `gsl_integration_qag` and `gsl_integration_qng` functions is implemented.
## Installation
This project is based on [cmake][] build system. First install cmake and GSL. Then:
cd /path/to/multidiminte
mkdir build
cd build
cmake ..
make && make install
## Report Bugs
If you find any bugs, you can report them on the [issue tracker][] by [filing a new issue][].
## License
Copyright (C) 2013 Hong Xu
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
[Cuba]: http://www.feynarts.de/cuba/
[GSLMC]: http://www.gnu.org/software/gsl/manual/html_node/Monte-Carlo-Integration.html
[cmake]: http://www.cmake.org
[filing a new issue]: https://github.com/xuhdev/multidiminte/issues/new
[issue tracker]: https://github.com/xuhdev/multidiminte/issues