Returns log-spaced bins. Same as numpy.logspace except the min and max are the min and max not log10(min) and log10(max)
Parameters: | min : float
max : float
num : integer
|
---|---|
Returns: | out : array
|
Other Parameters: | |
kwargs : dict
|
Notes
This function works on both numbers and datetime objects
Examples
>>> import spacepy.toolbox as tb
>>> tb.logspace(1, 100, 5)
array([ 1. , 3.16227766, 10. , 31.6227766 , 100. ])