Performance of row vs column operations in NumPy
There are a few articles that show that MATLAB prefers column operations than row operations, and that depending on you lay out your data the performance can vary significantly . This is apparently because MATLAB uses a column-major order for representing arrays. I remember reading that Python (NumPy) uses a row-major order. With this, my questions are: Can one expect a similar difference in performance when working with NumPy? If the answer to the above is yes, what would be some examples that highlight this difference ? Like many benchmarks, this really depends on the particulars of the