|
| real(dp) function, dimension(num), public | linspace (start, end, num, endpoint, retstep) |
| |
| real(dp) function, dimension(num), public | logspace (start, end, num, endpoint, base) |
| | Makes a grid with numbers spaced evenly on a log scale.
|
| |
| real(dp) function, dimension(num), public | geomspace (start, end, num, endpoint) |
| | Makes a grid with numbers spaced evenly on a log scale.
|
| |
| real(dp) function, dimension(num), public | loglinspace (start, end, num, step, ratio) |
| | loglinspace Computes a grid that may behave as linearly or logarithmically spaced
|
| |
| integer function, dimension(:), allocatable, public | arange (start, end, step) |
| | arange: Return evenly spaced integer values within a given interval
|
| |