I have a matrix like below fOR example:
A B C D
A 0 5 2 3
B 5 0 6 8
C 2 6 0 7
D 3 8 7 0
i want to first findout the lowest value in the matrix, say i found it in A(Row) & C(column) then compare the row A & C , keep the laest value between
New Matrix will be
A/c B D
A/c 0 5 3
B 5 0 8
D 3 8 0
How can I do this?
Please suggest any code or link
Thanks