grid_Val_Grow - fabiankindermann/ce-fortran GitHub Wiki
function grid_Val_Grow(x, left, right, growth, n)
Applies the gridpoint formula
-
real*8 :: x
The point where to evaluate the gridpoint formula, corresponds to.
-
real*8 :: left
The left interval endpoint, corresponds to.
-
real*8 :: right
The right interval endpoint, corresponds to.
-
real*8 :: growth
The growth rate of gridpoints, corresponds to.
-
integer :: n
The number of gridpoints to use, corresponds toand defines the interval
.
-
real*8 :: grid_Val_Grow
The value of the gridpoint formula at pointx
.
- For further reading refer to:
- Süli, E. & Mayers, D. F. (2003). An Introduction to Numerical Analysis. Cambridge: Cambridge University Press.
- Powell, M.J.D. (1996). Approximation Theory and Methods. Cambridge: Cambridge University Press.