numpy

The numpy module supplements the functions provided by numpy.

Functions

gaussian(x, mu, sigma) Gaussian function of the form \frac{1}{\sqrt{2 \pi}\sigma} e^{-\frac{(x-\mu)^2}{2\sigma^2}}.
frexp10(x) Finds the mantissa and exponent of a number x such that x = m 10^e.

Vectors

linspaceborders(array) Generate a new array with numbers interpolated between the numbers of the input array.
linspacestep(start, stop[, step]) Create a vector of values over an interval with a specified step size.