Lets say we have Q
cells, and each cell holds a N x M
array. Where Array{q}(n,m)
is the element in the n
th row of the m
th column of the q
th cell.
I want to find the index of the cell that holds the greatest value element in each column.
Can anyone suggest a simple way to do this?