Click or drag to resize
Accord.NET (logo)

Matrix3x3Multiply Method (Matrix3x3, Matrix3x3)

Multiplies two specified matrices.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Matrix3x3 Multiply(
	Matrix3x3 matrix1,
	Matrix3x3 matrix2
)
Request Example View Source

Parameters

matrix1
Type: Accord.MathMatrix3x3
Matrix to multiply.
matrix2
Type: Accord.MathMatrix3x3
Matrix to multiply by.

Return Value

Type: Matrix3x3
Return new matrix, which the result of multiplication of the two specified matrices.
See Also