Multiplies the matrix by other matrix.
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxpublic Matrix Multiply(
Matrix other
)
Public Function Multiply (
other As Matrix
) As Matrix
public:
Matrix^ Multiply(
Matrix^ other
)
member Multiply :
other : Matrix -> Matrix
Parameters
- other
- Type: Aspose.PdfMatrix
Multiplier matrix.
Return Value
Type:
MatrixResult of multiplication.
ExamplesMatrix 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