Owning Class: sets
Requires: MathScript RT Module
c = sets_diff(a, b)
c = sets_diff(a, b, 'rows')
[c, d] = sets_diff(a, b)
[c, d] = sets_diff(a, b, 'rows')
Legacy Name: setdiff
Returns the elements of the first input that are not in the second input.
| Name | Description |
|---|---|
| a | Specifies a vector or matrix. |
| b | Specifies a vector or matrix. |
| 'rows' | Specifies that c returns the rows in a that are not in b. You can specify this input when a and b are matrices with the same number of columns. |
| Name | Description |
|---|---|
| c | Returns the elements in a that are not in b. c is a vector or matrix. |
| d | Returns the indexes in a of the elements in c. d is a vector of integers. |
A = [1, 2, 3, 4, 5, 6, 7, 8, 9]
B = [2, 3, 5, 7]
C = sets_diff(A, B)