I'm trying to implement a logic where I'm trying to subtract each element of an array from every other element of the array and then find the minimum difference of the result.
eg : a=[10,7,3,6]
so I subtract 10 from every other element of the array to begin with (result will be 3,7,4) then move over to the next element which is 7 and then subtract it from the rest of the elements of the array (result will be 4,1), take the next element i.e 3 and subtract it with the remaining element 6 (result : -3). Note: I'm need to take absolute values of the result for my actual problem. Now as you can see, the minimum difference of the result of this subtraction process is 1.
I have managed to write a code till this point. However I also need to find the indices of numbers for which I have got the minimum difference result value as 1 (i.e indices of 7 and 6 in this example)
Does anyone how if there is any function to implement this in NumPy? I have tried using argwhere() with no success.