I have the rows and columns of a matrix and need to find the index. In my case I have a 6x6 matrix and would like to
find the index of the data at [3,3]
here's my code
[code]
heatmap = np.zeros((6,6), dtype=int);
index? = someFuction(heatmap[r,c]);
[/code]