log()
Apply log to values between 2 or more matrices (including scalars)
Code Sample
local matrix = {
{-100, -100, 100},
{-100, -100, 100},
}
local result1 = MatrixL:log(matrix, matrix, matrix)
local result2 = MatrixL:log(matrix, 100)
MatrixL:printMatrix(result1)
MatrixL:printMatrix(result2)Arguments
log(...): matrix… : any number of matrices or scalar
Notes:
First argument is the base for second argument, second argument is the base for third argument and so on.

