How to find a smallest value in a list?
2
2
I have a list of point2d coordinate {x,y}. I would like to find the point where x is the smallest. How can I do it in Mathematica?
list-manipulation
share | improve this question
asked 11 hours ago
N.T.C
285 1 7
3
point2d[[Ordering[point2d, 1][[1]]]]
– Henrik Schumacher
11 hours ago
...