![]() |
UnionPURPOSE
Iout=Union(d1,d2)
SYNOPSIS
function Iout=Union(d1,d2)
DESCRIPTION
Iout=Union(d1,d2) Produces an interval vector that includes the two given double vector. This is the function that is used in tree constructor when we fuse the information of two leaves that store vectors of doubles. If one of the inputs is an interval the Interval/Union is used instead. See also Interval/Union.m, BTree.m. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function Iout=Union(d1,d2) 0002 % Iout=Union(d1,d2) 0003 % Produces an interval vector that includes the two given double vector. 0004 % This is the function that is used in tree constructor when we fuse the 0005 % information of two leaves that store vectors of doubles. 0006 % If one of the inputs is an interval the Interval/Union is used 0007 % instead. 0008 % 0009 % See also Interval/Union.m, BTree.m. 0010 0011 Iout=Interval(min(d1,d2),max(d1,d2)); 0012 |