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 endpoint is False

  • axis (AxisT) – The name of the new axis corresponding to the sequence

  • num (NumT) – Number of values in the sequence

  • endpoint (bool) – Flag controlling whether stop should be included in the sequence.

  • base (BaseT) – The base of the logarithm

  • dtype (None | type | dtype) – numpy.dtype of the result

Return type:

StartT | StopT | AxisT | NumT

See also

numpy.logspace()

Corresponding numpy function.

named_arrays.ScalarLogarithmicSpace

Corresponding implicit scalar array.

named_arrays.UncertainScalarLogarithmicSpace

Corresponding implicit uncertain scalar array.