Multiply the matrix Mat_1 by the transpose of the matrix Mat_2. The number of columns in Mat_1 must be equal to the number of columns in Mat_2. Populates the vector Product, with the result of the multiplication, as:
P[m][j] = M1[m][n] * M2T[j][n]
Return to List of Matrix Related Functions