local matrix = {
{-100, -100, 100},
{-100, -100, 100},
}
local matrix2 = MatrixL:transpose(matrix)
local result1 = MatrixL:dotProduct(matrix, matrix2)
MatrixL:printMatrix(result1)
dotProduct(...): matrix
… : any number of matrices or scalar.
result: the resultant matrix after operations have been applied.