ILNumerics - Technical Application Development
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Boxed copy of the element at position i if the elements stored in this array are structs. Otherwise a reference copy of the element at i is returned.
This function provides a way to access element values of this untyped base array for
convenience reasons. It is needed in very rare cases only. Don't expect great performance
from using untyped functions like this! The recommended performant way is to use the strongly typed classes
(ArrayT, Logical, Cell) and the corresponding typed
API functions only.
Retrieve the element addressed by the sequential index i.
[ILNumerics Core Module]
Namespace: ILNumerics.Core.Arrays
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
Parameters
- i
- Type: SystemInt64
Sequential index (1 dim), assuming ColumnMajor storage order.
Return Value
Type: ObjectBoxed copy of the element at position i if the elements stored in this array are structs. Otherwise a reference copy of the element at i is returned.
Remarks
The element is found by 'sequential' index i. This corresponds to the position of the element in a flattened version of this array, where the flattening operation was performed in ColumnMajor storage order.
[ILNumerics Core Module]
See Also