|
Matrix3x3Multiply Operator (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 operator *(
Matrix3x3 matrix,
Vector3 vector
)
Public Shared Operator * (
matrix As Matrix3x3,
vector As Vector3
) As Vector3
Request Example
View SourceParameters
- matrix
- Type: Accord.MathMatrix3x3
Matrix to multiply by vector. - vector
- Type: Accord.MathVector3
Vector to multiply matrix by.
Return Value
Type:
Vector3Returns new vector which is the result of multiplication of the specified matrix
by the specified vector.
See Also