numpy.logspace()
numpy.logspace
-
numpy.logspace(start, stop, num=50, endpoint=True, base=10.0, dtype=None)
[source] -
Return numbers spaced evenly on a log scale.
In linear space, the sequence starts at
base ** start
(base
to the power ofstart
) and ends withbase ** stop
(seeendpoint
below).Parameters: start : float
base ** start
is the starting value of the sequence.stop