PEXMatrixMult Utility


Synopsis

   void PEXMatrixMult(
      PEXMatrix matrix1,
      PEXMatrix matrix2,
      PEXMatrix matrix_return
   )

Arguments

matrix1
First matrix to be multiplied.

matrix2
Second matrix to be multiplied.

matrix_return
Matrix into which result is stored.

Returns

None.

Description

Invoke PEXMatrixMult to perform a matrix multiplication:

matrix_return = matrix1 x matrix2.

If the return matrix is the same as one of the input matrices, then this utility overwrites the input values with the multiplied values.

Errors

None.

See Also

For a list of modeling transformation utilities, see Modeling Transformation Utilities. For a list of related topics, see PEXlib Utilities.