Click or drag to resize
Accord.NET (logo)

Matrix3x3Add Method (Matrix3x3, Single)

Adds specified value to all components of the specified matrix.

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

Parameters

matrix
Type: Accord.MathMatrix3x3
Matrix to add value to.
value
Type: SystemSingle
Value to add to all components of the specified matrix.

Return Value

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