<< subset_of Sets value >>

Scilab Scholar module for schools >> Sets > the_union

the_union

returns the union of two sets

Calling sequence

set3 = the_union(set1,set2)

Arguments

set1

set

set2

set

set3

set

Description

The function the_union returns the set set3 obtained by forming the union of the sets set1 and set2.

Examples

set1=define_set("a","c")
set2=define_set("b","c","d")
set3=the_union(set1,set2)

See Also

<< subset_of Sets value >>