DistributedMatrix<T>.GetValue Method

Definition

Namespace: Extreme.Mathematics.Distributed
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetValue(Int32, Int32) Gets the matrix element at the specified position.
GetValue<R, C>(R, C) Gets the value at the specified row and column keys.
Preliminary

GetValue(Int32, Int32)

Gets the matrix element at the specified position.
C#
public override T GetValue(
	int row,
	int column
)

Parameters

row  Int32
The zero-based row index of the element to get or set.
column  Int32
The zero-based column index of the element to get or set.

Return Value

T
The element of the Matrix<T> in the columnth column of the rowth row.

Remarks

If the local data at the specified location is out of date, all out of date data is downloaded from the device or worker node.

See Also