Here is a example code
mn = 0.8d
mx = 1.5d
step = 0.23d
arr = [mn:mx:step]
h = histogram(arr, min=mn, max=mx, binsize=step, loc=loc)
print, h
print, value_locate(loc, arr)
The output of histogram function is wrong.
Correct output is [1, 1, 1, 1].
This result is related to this post
http://www.idlcoyote.com/math_tips/ra...
Do you have any plane for fix this bug?
-Thanks