Given you have rows and cols coordinates/indexes, how can I update multiple cells simultaneously... something like :
rows_idxs = [.....]
cols_idxs = [.....]
ary[rows_idxs, cols_idxs] += 1
OR
ary[itertools.product(rows_idxs,cols_idxs)] += 1
neither of those works !?
How can I do that ?