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
and exponent
of a number x such that 
Returns the list
(mantissa, exponent).
-
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.ndarraystarting as start, with elements every step, up to at maximum stop.
.