Adds corresponding components of two matrices.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static Matrix3x3 operator +(
	Matrix3x3 matrix1,
	Matrix3x3 matrix2
)

Parameters

matrix1
Type: AForge.Math..::.Matrix3x3
The matrix to add to.
matrix2
Type: AForge.Math..::.Matrix3x3
The matrix to add to the first matrix.

Return Value

Returns a matrix which components are equal to sum of corresponding components of the two specified matrices.

See Also