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

link|improve this question

55% accept rate
... So what part can't you do? – Karl Knechtel Aug 5 '11 at 6:57
what do you want help with, the search or the sub matrix creation? What have you tried so far? – David Heffernan Aug 5 '11 at 6:58
2  
Your specs are unclear. What if there are two lowest values? Do values on the diagonal not count? Why did you remove column/row C instead of A? Is the matrix always symmetric around its main diagonal? – bdares Aug 5 '11 at 7:05
Take one step at a time. First you need to use a couple of for loops to search through the matrix for the minimum(s). Show us what code you have already. – Theo Zographos Aug 5 '11 at 8:02
I am trying but...not any success yet...i have coded very few. – user373083 Aug 5 '11 at 8:18
show 1 more comment
feedback

closed as not a real question by Karl Knechtel, Ishu, David Heffernan, Bo Persson, Tim Cooper Aug 6 '11 at 14:19

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Accord.NET is a very useful matrix library - I imagine it will have a function that does what you're after, but if not then you can use the Apply(...) method to supply your own function to run across a matrix. Hope that helps :)

link|improve this answer
Any explanation for the downvote?... – Nathan Aug 5 '11 at 8:50
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.