Okay, so basically you can say that I have a matrix:
matrix([[0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4]])
Is it easy to get the area under the diagonal when working with numpy matrices? I looked around and found nothing. I can make a standard, for a loop, but is it possible to somehow nullify the performance provided by numpy?
I am working on the calculation of statistics comparing the results of model output with actual results. The data that I have currently received is about 10,000 x 10,000 matrices. I basically try to just summarize these elements.
Is there an easy way to do this?