Click or drag to resize

MatrixTItem Property

Gets or sets the value at the given row and column, with range checking.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public T this[
	int row,
	int column
] { get; set; }

Parameters

row  Int32
The row of the element.
column  Int32
The column of the element.

Property Value

T
The value to get or set.

Implements

IMatrixTItemInt32, Int32
IROMatrixTItemInt32, Int32
Remarks
This method is ranged checked. At(Int32, Int32) and At(Int32, Int32, T) to get and set values without range checking.
See Also