How would I determine the position of the smallest positive number (including zero) from a list?
A list of numbers, e.g. Range[-5, 5, 1]
In this case, the list looks like this: {-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5}
And so the position is 6, which is the value I want returned.
I found some complicated examples on Stack Exchange but have thus far been unable to apply them to this simpler case.