mtimes(x: number,y: number,): number
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
mtimes(x: number,y: array,): array
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
y: array
The second operand, can be a number, array (treated as column vector), or matrix
The result of matrix multiplication of x and y
mtimes(x: array,y: number,): array
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
x: array
The first operand, can be a number, array (treated as column vector), or matrix
The result of matrix multiplication of x and y
mtimes(): number
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
mtimes(x: number,y: matrix,): matrix
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
y: matrix
The second operand, can be a number, array (treated as column vector), or matrix
The result of matrix multiplication of x and y
mtimes(x: matrix,y: number,): matrix
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
x: matrix
The first operand, can be a number, array (treated as column vector), or matrix
The result of matrix multiplication of x and y
mtimes(): array
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
The result of matrix multiplication of x and y
mtimes(): array
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
The result of matrix multiplication of x and y
mtimes(): matrix
Matrix multiplication.
Performs matrix multiplication of two matrices or arrays. For arrays, treats them as column vectors.
The result of matrix multiplication of x and y