/NumericalTools.jl

A Julia package offering some handy numerical tools, e.g. geomspace.

Primary LanguageJuliaMIT LicenseMIT

NumericalTools

Stable Dev Build Status Coverage

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 of linear_interpolation for 1-D linear interpolation in log scale.

See documentation for details.

Installation

julia> ]
pkg> add NumericalTools