Go to the source code of this file.
|
| module | int_comp |
| | Utility module containing the routines to perform the integration of functions.
|
| |
|
| subroutine, public | int_comp::integrate (func, ss) |
| | Routine to compute integrals of function from O to #maxint. More...
|
| |
| subroutine | int_comp::qromb (func, a, b, ss) |
| | Romberg integration routine. More...
|
| |
| subroutine | int_comp::qromo (func, a, b, ss, choose) |
| | Romberg integration routine on an open interval. More...
|
| |
| subroutine | int_comp::polint (xa, ya, n, x, y, dy) |
| | Polynomial interpolation routine. More...
|
| |
| subroutine | int_comp::trapzd (func, a, b, s, n) |
| | Trapezoidal rule integration routine. More...
|
| |
| subroutine | int_comp::midpnt (func, a, b, s, n) |
| | Midpoint rule integration routine. More...
|
| |
| subroutine | int_comp::midexp (funk, aa, bb, s, n) |
| | Midpoint routine for bb infinite with funk decreasing infinitely rapidly at infinity. More...
|
| |