-
Notifications
You must be signed in to change notification settings - Fork 46
grid_Val_Grow
Fabian Kindermann edited this page Apr 2, 2021
·
11 revisions
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 to and 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.