|
NuMFor cf0f85d (2025-09-27)
Numerical (Modern) Fortran. Library for Simple Numerical computing
|
Data Types | |
| interface | polyval |
| Computes the value of the polynomial when applied to a number or list of numbers. More... | |
Modules | |
| module | polynomial |
| polynomials provides a framework for simple (and quite naive) work with polynomials Further description in Submodule interpolate | |
Functions/Subroutines | |
| real(dp) function, dimension(:), allocatable, public | polyder (p, m) |
| polyder Computes the derivative of a polynomial. Returns an array with the coefficients | |
| real(dp) function, dimension(:), allocatable, public | polyint (p, m, k) |
| polyint Computes m-esima antiderivative | |
| subroutine, public | bisect_pol (x0, dx, p, toler, x) |
| bisect_pol Classical bisection method for root finding on polynomials | |