comparison scripts/set/union.m @ 5642:2618a0750ae6

[project @ 2006-03-06 21:26:48 by jwe]
author jwe
date Mon, 06 Mar 2006 21:26:54 +0000
parents 4c8a2e4e0717
children 34f96dd5441b
comparison
equal deleted inserted replaced
5641:eb998631a4aa 5642:2618a0750ae6
26 ## @group 26 ## @group
27 ## union ([ 1, 2, 4 ], [ 2, 3, 5 ]) 27 ## union ([ 1, 2, 4 ], [ 2, 3, 5 ])
28 ## @result{} [ 1, 2, 3, 4, 5 ] 28 ## @result{} [ 1, 2, 3, 4, 5 ]
29 ## @end group 29 ## @end group
30 ## @end example 30 ## @end example
31 ## @seealso{create_set, intersection, complement}
31 ## @end deftypefn 32 ## @end deftypefn
32 ##
33 ## @seealso{create_set, intersection, and complement}
34 33
35 ## Author: jwe 34 ## Author: jwe
36 35
37 function y = union(a,b) 36 function y = union(a,b)
38 37