numl.Math.LinearAlgebra.Matrix.this C# (CSharp) Method

this() public method

Indexer to set items within this collection using an n x 2 array of indices to set.
public this ( IEnumerable slice ) : double
slice IEnumerable An n x 2 array of indices to set.
return double
        public double this[IEnumerable<int[]> slice]
        {
            set
            {
                foreach (int[] i in slice)
                    this[i[0], i[1]] = value;
            }
        }

Same methods

Matrix::this ( bool>.Func f, VectorType t ) : Matrix
Matrix::this ( int i ) : Vector
Matrix::this ( int i, VectorType t ) : Vector
Matrix::this ( bool>.Func f ) : double
Matrix::this ( int i, int j ) : double