I have a numpy array like this one
# [[0.64809866 1.4297429 1.76778859]
# [0.98994126 0.60583935 1.07312068]
# [0.47607127 0.58659789 1.52184562]
# [0.6905903 0.33424117 1.50113122]
# [0.66848235 1.5608329 2.02750987]
I'd like to find the min of each row, but knowing by index. Like this
# [[0]
# [1]
# [0]
# [1]
# [0]]
i used np.min(dist, axis=1).reshape(-1, 1) in order to generate a matrix with the min of results, but no idea how to follow from here.