Maptitude GISDK Help |
Creates an array that contains the elements of the array a that are also in array b.
Added to Version 2019.
arr = ArrayIntersect(array a, array b)
Argument |
Contents |
a |
The input array |
b |
An array with elements to find in input |
An array with the elements in a that were found in b.
input = {1,2,1,6,2,5}
compare = {4,2,6}
ArrayIntersect(input, compare) // returns {2,6,2}
Function |
Summary |
Excludes elements from an array |
|
Removes elements from an array |
|
Inserts elements into an array |
©2025 Caliper Corporation | www.caliper.com |