Accord.Math.Matrix3x3.Add C# (CSharp) Method

Add() public static method

Adds corresponding components of two matrices.
public static Add ( Matrix3x3 matrix1, Matrix3x3 matrix2 ) : Matrix3x3
matrix1 Matrix3x3 The matrix to add to.
matrix2 Matrix3x3 The matrix to add to the first matrix.
return Matrix3x3
        public static Matrix3x3 Add( Matrix3x3 matrix1, Matrix3x3 matrix2 )
        {
            return matrix1 + matrix2;
        }

Same methods

Matrix3x3::Add ( Matrix3x3 matrix, float value ) : Matrix3x3