ILNumerics Ultimate VS

ExtensionMethodsGetValueT Method (BaseArrayBaseArray, Int64, Int64, Int64, Int64, Int64, Int64)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Retrieves the value of the element at the position specified by d0 ... d5 as an array. Supports deep indexing.

[ILNumerics Core Module]

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

public static T GetValue<T>(
	this BaseArray<BaseArray> A,
	long d0,
	long d1,
	long d2,
	long d3,
	long d4,
	long d5
)

Parameters

A
Type: ILNumericsBaseArrayBaseArray
The cell instance.
d0
Type: SystemInt64
Index #0.
d1
Type: SystemInt64
Index #1.
d2
Type: SystemInt64
Index #2.
d3
Type: SystemInt64
Index #3.
d4
Type: SystemInt64
Index #4.
d5
Type: SystemInt64
Index #5 into the last dimension or sequential index into remaining dimensions of the array.

Type Parameters

T

Return Value

Type: T
Copy/clone of the elements value. Scalar values are wrapped into a scalar array.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type BaseArrayBaseArray. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions

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

This functions retrieves the value of the element as given by d0...d5. If while searching for the element a cell is found the function steps down into the cell and continues to retrieve the value from the inner cell using subsequent trailing indices left over (deep indexing).

If the value provided by the last index parameter exceeds the number of elements in its corresponding dimension the superflous index value is translated into subsequent dimensions of this inner most array element.

The type of the array returned corresponds to the type of the element addressed by d0...d5. Use GetValueT(BaseArrayBaseArray, Int64) in order to retrieve the element as its natural type. IsTypeOfCellT(ConcreteArrayBaseArray, Cell, InCell, OutCell, RetCell, CellStorage, Int64) can be used to inspect the element type.

[ILNumerics Core Module]

See Also

Reference

ExtensionMethods.ToRetArray``1(BaseArray)