MatrixMultiply Method
Multiplies the matrix by other matrix.

Namespace: Aspose.Pdf
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public Matrix Multiply(
	Matrix other
)

Parameters

other
Type: Aspose.PdfMatrix
Multiplier matrix.

Return Value

Type: Matrix
Result of multiplication.
Examples
C#
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