Jump to content

Index Array function: Difference between revisions

From LabVIEW Wiki
Created page with "{{Stub}} thumb|Index Array function Returns an element or subarray at a specific index from an n-dimensional array. {{LabVIEW Palette Ob..."
 
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Stub}}
[[File:Index Array - Terminals.png|thumb|Index Array function]]
[[File:Index Array - Terminals.png|thumb|Index Array function]]


Returns an element or subarray at a specific index from an n-dimensional array.
{{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Array{{!}}Array palette|type=function|icon=Index Array.png}}


{{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Array{{!}}Array palette|type=function}}
The '''Index Array''' function returns a single element or subarray at a specific index from an array of any type.


== Usage ==
== Usage ==


If no index is specified, the function returns the first element or subarray as if the index was set to zero.
Connect an array to the input terminal '''n-dimension array''' to get the first element or subarray (index 0).


The index automatically increments if not specified. This also works with jumps, by defining the index of an element further below.
[[File:Index Array - Get First Element.png]]


For n-dimensional arrays, the number of terminals for each element or subarray matches the number of dimensions of the source array.
Change the number of indices at the node by dragging the upper or lower side. This will cause the node to return the second, third, ... element or subarray (index 1, 2, ...).


The index terminals for n-dimensional arrays are sorted in descending order, with the top terminal for the highest dimension. The first four dimensions are given names. From the fifth dimension onwards, terminal names keep incrementing with the pattern "dim<n>", where "<n>" is the dimension number.
[[File:Index Array - Get First Few Elements.png]]
 
Specify an index at the '''index''' input terminal to start at a specific element from the array. The input terminals following after that are automatically incremented.
 
[[File:Index Array - Get Specific Elements.png]]
 
For multidimensional arrays, the number of terminals for each element or subarray matches the number of dimensions of the source array.
 
[[File:Index Array - Get First Subarray.png]]
 
The index terminals for multidimensional arrays are sorted in descending order, with the top terminal for the highest dimension. The first four dimensions are given names. From the fifth dimension onward, terminal names increment with the pattern "dim<n>", where "<n>" is the dimension number.


{| class="wikitable"
{| class="wikitable"
! Dimensions
! Dimensions
! terminals
! Index terminals
|-
|-
| 1
| 1
Line 38: Line 47:
== Best practice ==
== Best practice ==


== History ==
* Do not specify an index for the first element or subarray (index 0).
 
* Use a single '''Index Array''' node to get multiple elements or subarrays from the same array in one VI.
== See also ==
 
== External links ==


[[Category:Array Palette]]
[[Category:Array Palette]]

Latest revision as of 22:14, 25 June 2020

Index Array function
Object information
Owning palette(s) Array palette
Type Function
Requires Basic Development Environment
Icon

The Index Array function returns a single element or subarray at a specific index from an array of any type.

Usage

Connect an array to the input terminal n-dimension array to get the first element or subarray (index 0).

Change the number of indices at the node by dragging the upper or lower side. This will cause the node to return the second, third, ... element or subarray (index 1, 2, ...).

Specify an index at the index input terminal to start at a specific element from the array. The input terminals following after that are automatically incremented.

For multidimensional arrays, the number of terminals for each element or subarray matches the number of dimensions of the source array.

The index terminals for multidimensional arrays are sorted in descending order, with the top terminal for the highest dimension. The first four dimensions are given names. From the fifth dimension onward, terminal names increment with the pattern "dim<n>", where "<n>" is the dimension number.

Dimensions Index terminals
1 index
2 row, col
3 page, row, col
4 vol, page, row, col
5 dim5, vol, page, row, col

Best practice

  • Do not specify an index for the first element or subarray (index 0).
  • Use a single Index Array node to get multiple elements or subarrays from the same array in one VI.