I am trying to get 1000 numbers logarithmically spaced between two floats (say between 0.674 to 100.0) using python. Purpose of this was to get more numbers closer to 0.674 and after than just few large numbers near 100. I tried using 'numpy.logspace' function like following
NumberRange = np.logspace(0.674, 100.0, num=1000)
But it was giving result with these numbers as exponents. I want numbers between two floats but spaced logarithmically.
I have already checked this post but it was confusing.