7 lines
137 B
Mathematica
7 lines
137 B
Mathematica
|
|
function c = unionstripped(a,b)
|
||
|
|
%UNIONSTRIPPED Internal function (version without checkings etc.)
|
||
|
|
|
||
|
|
c = uniquestripped([a(:)' b(:)']);
|
||
|
|
|
||
|
|
|