Union: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "http://help.dyalog.com" to "https://help.dyalog.com") |
(change Intersection code to correct Union code in Extension) Tags: Mobile edit Mobile web edit |
||
(2 intermediate revisions by one other user not shown) | |||
Line 3: | Line 3: | ||
== Examples == | == Examples == | ||
Both arguments of Intersection is usually restricted to [[vector|vectors]]. Unlike sets in the mathematical sense, duplicate elements are allowed in both sides, and Union is usually implemented as "left argument unchanged, plus the elements of right argument not in the left argument" < | Both arguments of Intersection is usually restricted to [[vector|vectors]]. Unlike sets in the mathematical sense, duplicate elements are allowed in both sides, and Union is usually implemented as "left argument unchanged, plus the elements of right argument not in the left argument" <syntaxhighlight lang=apl inline>X,(~Y∊X)/Y</syntaxhighlight>. This preserves the order and multiplicity in both arguments, the left one taking precedence. Both arguments can be [[nested array|nested arrays]]. | ||
< | <syntaxhighlight lang=apl> | ||
'WASH' ∪ 'SHOUT' | 'WASH' ∪ 'SHOUT' | ||
WASHOUT | WASHOUT | ||
Line 14: | Line 14: | ||
│THIS│THAT│THE│OTHER│THAN│AND│ | │THIS│THAT│THE│OTHER│THAN│AND│ | ||
└────┴────┴───┴─────┴────┴───┘ | └────┴────┴───┴─────┴────┴───┘ | ||
</ | </syntaxhighlight> | ||
== Extension == | == Extension == | ||
Some dialects allow Union to work on [[major cell]]s: | Some dialects allow Union to work on [[major cell]]s: | ||
[https://tio.run/##SyzI0U2pTMzJT9dNrShJzUtJTfn/P@JR2wQTBaNHvVvUHR2dnJyBQJ0rEihoDBN0cXF0VOd61DcVKBjxqGNV5P//AA Try it online!]< | [https://tio.run/##SyzI0U2pTMzJT9dNrShJzUtJTfn/P@JR2wQTBaNHvVvUHR2dnJyBQJ0rEihoDBN0cXF0VOd61DcVKBjxqGNV5P//AA Try it online!]<syntaxhighlight lang=apl> | ||
X←4 2⍴'AABBCCCC' | X←4 2⍴'AABBCCCC' | ||
Y←3 2⍴'AADDAA' | Y←3 2⍴'AADDAA' | ||
Line 27: | Line 27: | ||
CC | CC | ||
DD | DD | ||
</ | </syntaxhighlight>{{Works in|[[Extended Dyalog APL]]}} | ||
Others can easily define such a function: | Others can easily define such a function: | ||
[https://tio.run/##SyzI0U2pTMzJT///P@JR2wQTBaNHvVvUHR2dnJyBQJ0rEihoDBN0cXF0VOcKzcvMzwMKVz/q3fWod9Wj3q2PevY/6l2h8ahzEVBI0wYsvhkoXsv1qG8qUGWEAliPQuT//wA Try it online!]< | [https://tio.run/##SyzI0U2pTMzJT///P@JR2wQTBaNHvVvUHR2dnJyBQJ0rEihoDBN0cXF0VOcKzcvMzwMKVz/q3fWod9Wj3q2PevY/6l2h8ahzEVBI0wYsvhkoXsv1qG8qUGWEAliPQuT//wA Try it online!]<syntaxhighlight lang=apl> | ||
X←4 2⍴'AABBCCCC' | X←4 2⍴'AABBCCCC' | ||
Y←3 2⍴'AADDAA' | Y←3 2⍴'AADDAA' | ||
Union←{⍺⍪⍵⌿⍨(≢⍺)<⍺⍳⍵} | |||
X | X Union Y | ||
AA | AA | ||
BB | BB | ||
Line 39: | Line 39: | ||
CC | CC | ||
DD | DD | ||
</ | </syntaxhighlight>{{Works in|[[Dyalog APL]]}} | ||
== External Links == | == External Links == | ||
Latest revision as of 17:25, 6 January 2024
∪
|
Union (∪
) is a dyadic set function which computes the set union of the two vector arguments.
Examples
Both arguments of Intersection is usually restricted to vectors. Unlike sets in the mathematical sense, duplicate elements are allowed in both sides, and Union is usually implemented as "left argument unchanged, plus the elements of right argument not in the left argument" X,(~Y∊X)/Y
. This preserves the order and multiplicity in both arguments, the left one taking precedence. Both arguments can be nested arrays.
'WASH' ∪ 'SHOUT' WASHOUT 1 2 3 1 2 3 1 2 3∪5 4 3 2 5 4 3 2 1 2 3 1 2 3 1 2 3 5 4 5 4 'THIS' 'THAT' 'THE' 'OTHER'∪'OTHER' 'THAN' 'THIS' 'AND' 'THAT' ┌────┬────┬───┬─────┬────┬───┐ │THIS│THAT│THE│OTHER│THAN│AND│ └────┴────┴───┴─────┴────┴───┘
Extension
Some dialects allow Union to work on major cells:
X←4 2⍴'AABBCCCC' Y←3 2⍴'AADDAA' X∩Y AA BB CC CC DD
Works in: Extended Dyalog APL
Others can easily define such a function:
X←4 2⍴'AABBCCCC' Y←3 2⍴'AADDAA' Union←{⍺⍪⍵⌿⍨(≢⍺)<⍺⍳⍵} X Union Y AA BB CC CC DD
Works in: Dyalog APL
External Links
Documentation