|
Matrix3x3Add Method (Matrix3x3, Matrix3x3)
|
Adds corresponding components of two matrices.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static Matrix3x3 Add(
Matrix3x3 matrix1,
Matrix3x3 matrix2
)
Public Shared Function Add (
matrix1 As Matrix3x3,
matrix2 As Matrix3x3
) As Matrix3x3
Request Example
View SourceParameters
- matrix1
- Type: Accord.MathMatrix3x3
The matrix to add to. - matrix2
- Type: Accord.MathMatrix3x3
The matrix to add to the first matrix.
Return Value
Type:
Matrix3x3Returns a matrix which components are equal to sum of corresponding
components of the two specified matrices.
See Also