Matrix multiplication, computation

Summary

  • If A is n×m and B is m×l then C=AB is defined and element i,j of C is given by the dot product of row i of A with column j of B ,

ci,j=ai,b,j

  • where i=1,,n and j=1,,l .