DADiSP Worksheet Functions > Function Categories > Data Manipulation and Editing > DELMATCH

 

DELMATCH

Purpose:

Removes values from a source series that are found in a target series.

Syntax:

DELMATCH(source, target)

source

-

A series, the series to process.

target

-

A series, the values to remove.

Returns:

A series.

Example:

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.

Remarks:

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.

See Also:

DELETE

FIND

REMOVE

SERMATCH

SORT