Hi,
I got one, two dimensional array.
MyArray[1000][2].
Both the array i.e.
MyArray[0][0]........
MyArray[0][1].......
are filled with some values.
Now I got he given values for both: e.g. value_0 = 4.056 and value_1 = -201.375.
I have to search the arrayMyArray[0]...MyArray[999] and find the closest value row for
the given value. I have to compare the value in row not separate.
Means:
When MyArray[0][0] will be compared with value_0 = 4.056 then MyArray[0][1] will be
compared with value_1 = -201.375. When MyArray[1][0] will be compared with value_0 = 4.056 at the same time MyArray[1][1] will be compared with value_1 = -201.375.
Can anybody suggest me the fatest way to find the closest match.
Thanks,