SUNY Geneseo Department of Mathematics
Monday, December 14
Math 230 01
Fall 2015
Prof. Doug Baldwin
r = rUnion( r1, r2 )
r = r1
for i = 1 to size( r2, 1 )
tuple = true % Stays true if row i of r2 should be added to result
for j = 1 to size( r1, 1 )
if r2(i,:) = r1(j,:)
tuple = false
end
end
if tuple
r = [ r; r2(i,:) ]
end
end
(No Next Lecture)