numpy

The numpy module contains a few convenience functions mostly designed to make evaluating functions easier for plotting.

scisalt.numpy.frexp10(x)[source]

Finds the mantissa m and exponent e of a number x such that x = m 10^e

Returns the list (mantissa, exponent).

scisalt.numpy.gaussian(x, mu, sigma)[source]

New in version 1.5.

Gaussian function of the form \frac{1}{\sqrt{2 \pi}\sigma} e^{-\frac{(x-\mu)^2}{2\sigma^2}}.

scisalt.numpy.linspaceborders(array)[source]

Given a 1-D array, generate a new array with numbers between the numbers of the input array. Adds elements to the left and right sides to get the exterior border as well.

Returns a numpy.ndarray.

scisalt.numpy.linspacestep(start, stop, step=1)[source]

Returns a numpy.ndarray starting as start, with elements every step, up to at maximum stop.

Previous topic

Mathematics Modules

Next topic

scipy