Currently method for get or set member at i,j of a Double.DenseMatrix is the SparseMatrix.At method,
Also possible to have indexing access for the instance:
/// <summary>
/// Gets or sets the member at i,j
/// </summary>
/// <param name="i">the row</param>
/// <param name="j">the column</param>
/// <returns>member at location i,j</returns>
public double this[int i, int j]
{
get
{
return this.At(i, j);
}
set
{
this.At(i, j, value);
}
}
Final result is member at i,j can be accessed in C# like this:
Currently method for get or set member at
i,j
of aDouble.DenseMatrix
is theSparseMatrix.At
method, Also possible to have indexing access for the instance:Final result is member at
i,j
can be accessed in C# like this:metrix[i,j] = value