
Conditional Auto-Indexing Tunnel.vi
Empty Array.vi
Filter 1D Array.vi
Removes all instances of Items to Filter from Array
Remove Duplicates from 1D Array.vi
Reverse 2D Array.vi
This VI reverses, by row or by column, a 2D array of any size.
Slice 1D Array.vi
Returns a subset from array. subset has the following syntax:
array[subset] = subarray
subset is a range and is of the form "i:j" where i and j are integers
if i is ommitted it is assumed to be zero. If j is ommitted it is assumed to be length(array)
if i or j are negative numbers they are assumed to be refferenced from the end of the string.
examples:
if array = [7,6,5,4,3,2,1]
string[2:] = [5,4,3,2,1]
string[:3] = [7,6,5]
string[-1] = [1]
string[4] = [3]
string[-4:-2] = [4,3]
Sort 2D Array.vi
This polymorphic VI sorts a 2D array of numerics or strings, regardless of the array size. You can specify whether to sort by column or row, which column or row to sort by, and whether to sort in ascending or descending order. You also can specify a secondary row or column to sort by.