Hi,
I am new with numpy and scipy. But I have a problem to find a good way to compute my array.
I have a array with 2 rows. Example
[[5, 8, 9, 10], [1, 2, 3, 5,6]]
And I need to manage the number of records without touch the "behaviour" of my array. Example:
Reduce my to 2 columns =>
[[5, 10],[1,6]]
Who knows which sort of algorithms I need to make it ?