For each function, I get / have an array of arrays with a finite size that I need to select.
So, if I have something like
1)
{-0.02, 0.5, 0.98, -0.15, etc... }
I would choose "-0.02" from this list.
2)
{-0.78, 0.003, 0.1, -1.8, etc... }
and now I would select "0.003" from this list.
This is just an example. In my real program, I am floating with 5-6 decimal points.
source share