ILNumerics Ultimate VS

ImmutableT1, LocalT, InT, OutT, RetT, StorageTItem Property (UInt32, UInt32, UInt32, UInt32, UInt32, UInt32, UInt32)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
(TODO: add numpy indexing docu) Retrieves the value of the element at the position specified by d0 ... d6 or set its value.

[ILNumerics Core Module]

Namespace:  ILNumerics.Core.Arrays
Assembly:  ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public RetT this[
	uint d0,
	uint d1,
	uint d2,
	uint d3,
	uint d4,
	uint d5,
	uint d6
] { get; }

Parameters

d0
Type: SystemUInt32
Index into the first dimension.
d1
Type: SystemUInt32
Index into the second dimension.
d2
Type: SystemUInt32
Index into the third dimension.
d3
Type: SystemUInt32
Index into the fourth dimension.
d4
Type: SystemUInt32
Index into the fifths dimension.
d5
Type: SystemUInt32
Index into the sixths dimension.
d6
Type: SystemUInt32
Index into the sevenths dimension or sequential index into remaining dimensions of the array.

Return Value

Type: RetT
Element value.
Exceptions

ExceptionCondition
IndexOutOfRangeExceptionif at least one of the values of d0, d1, d2, d3, d4, d5 exceeds the number of elements in its corresponding dimension, or if the computed index according to all index parameters d0, d1,... exceeds the NumberOfElements.
Remarks

This functions retrieves the value of the element as given by the indices into the seven dimensions.

[ILNumerics Core Module]

See Also

Reference