base ^^ start is the value of the first element
base ^^ stop is the value of the last element
number of points in the interval (default = 50)
the base of the log space (default = 10)
slice with numbers evenly spaced over a log scale
assert(logspace(1, 2, 3, 10) == [10. ^^ 1.0, 10. ^^ 1.5, 10. ^^ 2.0]);
Returns a slice with numbers evenly spaced over a log scale.
In linear space, the sequence starts at base ^^ start (base to the power of start) and ends with base ^^ stop.