Click or drag to resize

MatrixMultiply Method

Overload List
  NameDescription
Public methodMultiply(Double)
Creates a new Matrix which has the value of the current matrix multiplied by the given factor.
Public methodStatic memberMultiply(Matrix, Matrix)

Creates a Matrix which is the linear algebra multiplication of the two given matrices.

The most efficient operation to do this is chosen through double dispatch based on the concrete types of the given matrices.

Public methodStatic memberMultiply(Matrix, Matrix3By3)
Creates a Matrix which is the linear algebra multiplication of the two given matrices.
Public methodStatic memberMultiply(Matrix, Matrix6By6)
Creates a Matrix which is the linear algebra multiplication of the two given matrices.
Public methodStatic memberMultiply(Matrix3By3, Matrix)
Creates a Matrix which is the linear algebra multiplication of the two given matrices.
Public methodStatic memberMultiply(Matrix6By6, Matrix)
Creates a Matrix which is the linear algebra multiplication of the two given matrices.
Top
See Also