Matrix.Multiply

Matrix.Multiply method

Multiplies the matrix by other matrix.

public Matrix Multiply(Matrix other)
ParameterTypeDescription
otherMatrixMultiplier matrix.

Return Value

Result of multiplication.

Examples

Matrix a = new Matrix(new double[] { 1, 0, 0, 1, 10, 20 });
Matrix b = new Matrix(new double[] { 0, -1, 1, 0, 0, 0 } );
Matrix c= a.Multiply(b);

See Also