Open bdalfavero opened 10 months ago
Based on the discussion of swapping loops today, let's look at the order of iterations in our multiplication. The matrix is stored row-major, so should we iterate over the rows or columns first?
No need to totally rewrite the function either. Maybe make it an (optional) argument to the multiplication function.
Based on the discussion of swapping loops today, let's look at the order of iterations in our multiplication. The matrix is stored row-major, so should we iterate over the rows or columns first?