Gets and sets the value at the specified position. Symmetry is maintained.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public DoubleComplex this[ int row, int col ] { get; set; } |
| Visual Basic (Declaration) |
|---|
Public Default Property Item ( _ row As Integer, _ col As Integer _ ) As DoubleComplex |
| Visual C++ |
|---|
public: property DoubleComplex default[int row, int col] { DoubleComplex get (int row, int col); void set (int row, int col, DoubleComplex value); } |
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.IndexOutOfRangeException | Thrown when using a row-column pair that is outside the dimensions of this matrix. |