geomspace#

named_arrays.geomspace(start, stop, axis, num=50, endpoint=True, dtype=None)#

Create an array of a geometric progression of numbers 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.

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

Return type:

StartT | StopT | AxisT | NumT

See also

numpy.geomspace()

Corresponding numpy function.

named_arrays.ScalarGeometricSpace

Corresponding implicit scalar array.

named_arrays.UncertainScalarGeometricSpace

Corresponding implicit uncertain scalar array.