All Questions
1 question
1
vote
1
answer
131
views
How to efficiently operate on sub-arrays like calculating the determinants, inverse,
I have to to multiple operations on sub-arrays like matrix inversions or building determinants. Since for-loops are not very fast in Python I wonder what is the best way to do this.
import numpy as ...