In Matlab, by the function min(), I can only get one single minimum element of a vector, even if there can be several equal minimum elements. I was wondering how to get the indi
You can use find to find the min values:
find
find(v == min(v))