I have a matrix, a small sample of the data:
A=
1 3 658
2 3 475
5 3 769
1 3 856
6 7 1579
2 3 678
5 3 118
6 7 617
So now, I want to find for every unique combination of column A and B the lowest value in column C, preferably in a new Matrix.
So the output will be:
B=
1 3 658
2 3 475
5 3 118
6 7 617
Could you point me in the direction of the best way to do this? Thanks in advance