Click or drag to resize
Accord.NET (logo)

Matrix3x3Multiply Method (Matrix3x3, Vector3)

Multiplies specified matrix by the specified vector.

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

Parameters

matrix
Type: Accord.MathMatrix3x3
Matrix to multiply by vector.
vector
Type: Accord.MathVector3
Vector to multiply matrix by.

Return Value

Type: Vector3
Returns new vector which is the result of multiplication of the specified matrix by the specified vector.
See Also