I am trying to make an array in logscale with python 3 and numpy.
I have an issue with the boudaries of my array, the returned array give a lower limit below the limit I want.
For instance :
In : a = np.array(379/19)
In : x = np.geomspace(a, 20)
In : x[0] >= a
Out: False
Whereas with linspace it works :
In : y = np.linspace(a, 20)
In : y[0] >= a
Out: True
Is it an known issue with logspace and geomspace ?
Thanks for your help !