Removes values from a source series that are found in a target series.
DELMATCH(source, target)
source |
- |
A series, the series to process. |
target |
- |
A series, the values to remove. |
A series.
W1: {1, 2, 3, 4, 2, 3, 1}
W2: {2, 3}
W3: delmatch(w1, w2)
W3 == {1, 4, 1}
The values 2 and 3 are removed from the input series.
DELMATCH uses the SERMATCH DLL - sermatch.dll.
See SERMATCH to return the indices of the values that occur in both a source and target series.