ILNumerics Ultimate VS

Mutable<T1, LocalT, InT, OutT, RetT, StorageT>.Item Property (DimSpec, DimSpec, DimSpec, DimSpec, DimSpec, DimSpec)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Gets a subarray from this array or replaces the values of part of this array.

[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[
	DimSpec d0,
	DimSpec d1,
	DimSpec d2,
	DimSpec d3,
	DimSpec d4,
	DimSpec d5
] { get; set; }

Parameters

d0
Type: ILNumerics.DimSpec
Range specification for dimension #0.
d1
Type: ILNumerics.DimSpec
Range specification for dimension #1.
d2
Type: ILNumerics.DimSpec
Range specification for dimension #2.
d3
Type: ILNumerics.DimSpec
Range specification for dimension #3.
d4
Type: ILNumerics.DimSpec
Range specification for dimension #4.
d5
Type: ILNumerics.DimSpec
Range specification for dimension #5.

Property Value

Type: RetT
The right side array providing the new values.

Return Value

Type: RetT
Subarray according to the range specification(s) d0...
Exceptions

ExceptionCondition
IndexOutOfRangeExceptionIf an index lays outside of the allowed range. The exception message will carry more details regarding the cause of this error.
Remarks

This indexer supports subarray retrieval and subarray assignment for mutable ILNumerics array types: Array<T>, OutArray<T> and the corresponding array types for Logical, OutLogical, Cell and OutCell.

[ILNumerics Core Module]

See Also

Reference

Other Resources