Encog.MathUtil.Matrices.Matrix.Add C# (CSharp) Method

Add() public method

Add the specified matrix to this matrix. This will modify the matrix to hold the result of the addition.
public Add ( Matrix matrix ) : void
matrix Matrix The matrix to add.
return void
        public void Add(Matrix matrix)
        {
            for (int row = 0; row < Rows; row++)
            {
                for (int col = 0; col < Cols; col++)
                {
                    Add(row, col, matrix[row, col]);
                }
            }
        }

Same methods

Matrix::Add ( int row, int col, double value_ren ) : void