I have some data like
4 0.128 0.039
5 0.111 0.037
6 0.095 0.036
I need to get the second and third value by a known first value.
If I have a value of 4 I want to get back two variables: a = 0.111 and b = 0.037
What would be the best variable type for storing the data shown above to get simple access to the data? An object or an multidimensional array?