logspace#
- named_arrays.logspace(start, stop, axis, num=50, endpoint=True, base=10, dtype=None)#
Create an array of evenly-spaced numbers on a log scale between start and stop.
- Parameters:
start (StartT) – The starting value of the sequence
stop (StopT) – The last value of the sequence, unless
endpointisFalseaxis (AxisT) – The name of the new axis corresponding to the sequence
num (NumT) – Number of values in the sequence
endpoint (bool) – Flag controlling whether
stopshould be included in the sequence.base (BaseT) – The base of the logarithm
dtype (None | type | dtype) –
numpy.dtypeof the result
- Return type:
StartT | StopT | AxisT | NumT
See also
numpy.logspace()Corresponding numpy function.
named_arrays.ScalarLogarithmicSpaceCorresponding implicit scalar array.
named_arrays.UncertainScalarLogarithmicSpaceCorresponding implicit uncertain scalar array.