Logspace.init (function)
def __init__(self, start, stop, num, endpoint=True, base=10.0, unit=None)
This is available as a top-level convenience function as nparray.logspace.
Arguments
start(int or float):base ** startis the starting value of the sequence.stop(int or float):base ** stopis the final value of the sequence, unlessendpointis False. In that case,num + 1values are spaced over the interval in log-space, of which all but the last (a sequence of lengthnum) are returned.num(int): number of samples to generate.endpoint(bool, optional, default=True): If True,stopis the last sample. Otherwise, it is not included.base(float, optional, default=10.0): The base of the log space. The step size between the elements inln(samples) / ln(base)(orlog_base(samples)) is uniform.unit(astropy unit or string, optional, default=None): unit corresponding to the passed values.