A simple Julia package offering some useful numerical tools for daily scientific research.
Currently implemented tools are:
-
geomspace: Generate a geometric sequence like numpy.geomspace. -
linspace: Generate an arithmetic sequence like numpy.linspace. -
logspace: Generate a log-linear sequence like numpy.logspace. -
sqrtm1: Accurately calculate$f(x) = \sqrt{1 + x} - 1$ for small$x$ . -
loginterpolator: A wrapper oflinear_interpolationfor 1-D linear interpolation in log scale.
See documentation for details.
julia> ]
pkg> add NumericalTools