Matrix Multiplication
Matrix multiplication is the operation where the rows of one matrix are combined with the columns of another.
Rules
- The number of columns in A must equal the number of rows in B.
- The result is a new matrix with the shape of rows(A) × columns(B).