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
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.dtype (None | type | dtype) –
numpy.dtypeof the result
- Return type:
StartT | StopT | AxisT | NumT
See also
numpy.geomspace()Corresponding numpy function.
named_arrays.ScalarGeometricSpaceCorresponding implicit scalar array.
named_arrays.UncertainScalarGeometricSpaceCorresponding implicit uncertain scalar array.