Multiplies two matrix objects.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> operator *(
Matrix<T> matrix1,
Matrix<T> matrix2
)
Public Shared Operator * (
matrix1 As Matrix(Of T),
matrix2 As Matrix(Of T)
) As Matrix(Of T)
public:
static Matrix<T>^ operator *(
Matrix<T>^ matrix1,
Matrix<T>^ matrix2
)
static let inline (*)
matrix1 : Matrix<'T> *
matrix2 : Matrix<'T> : Matrix<'T>
Parameters
- matrix1
- Type: Extreme.MathematicsMatrixT
The first MatrixT. - matrix2
- Type: Extreme.MathematicsMatrixT
The second MatrixT.
Return Value
Type:
MatrixTA
MatrixT that is the product
of
matrix1 and
matrix2.
Reference