Matrix Multiplication

Function: Matrix multiplication is the row of the left matrix multiplied by the column of the right matrix for dot multiplication, requiring the number of columns of the left matrix to be equal to the number of rows of the right matrix

Input Parameters:

Name Type Valid Range Default Value Meaning

Left matrix

Matrix

None

Unit Matrix

Matrix, the default is the unit matrix.

Right matrix

Matrix

None

Unit Matrix

Matrix, the default is the unit matrix.

Output Parameters:

Name Type Valid Range Default Value Meaning

Results matrix

Matrix

None

Unit Matrix

Result matrix, the default is the unit matrix.