Click or drag to resize
Accord.NET (logo)

Matrix3x3Multiply Method (Matrix3x3, Single)

Multiplies matrix by the specified factor.

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

Parameters

matrix
Type: Accord.MathMatrix3x3
Matrix to multiply.
factor
Type: SystemSingle
Factor to multiple the specified matrix by.

Return Value

Type: Matrix3x3
Returns new matrix with all components equal to corresponding components of the specified matrix multiples by the specified factor.
See Also