Click or drag to resize

MatrixWrapperStructForColumnMajorOrderLinearArrayTItem Property

Gets or sets the element at the specified row and column.

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

Parameters

row  Int32
The row index.
col  Int32
The column index.

Property Value

T
The element at the specified row and column.

Implements

IMatrixTItemInt32, Int32
Exceptions
ExceptionCondition
IndexOutOfRangeException Thrown when the row or column index is out of range.
See Also