<< CL_intervDiff Math CL_intervInv >>

CelestLab >> Math > CL_intervInters

CL_intervInters

Intersection of sets of intervals

Calling Sequence

ires = CL_intervInters(i1,i2 [,i3,...,ip])

Description

Parameters

i1:

Set of intervals [start ; end] (2xN)

i2:

Set of intervals [start ; end] (2xN2)

ip:

Set of intervals [start ; end] (2xNp)

ires:

Intesection of i1,i2...,ip (2xM)

See also

Authors

Examples

i1=[ [1;3] , [5;6] , [10;12]];
i2=[ [2;4] , [5.5;5.7] , [5.8;15]];
ires = CL_intervInters(i1,i2);

i1=[ [1;3] , [5;6] , [10;12]];
i2=[ [2;4] , [5.5;5.7] , [5.8;15]];
i3=[ [1.1;1.2] , [3.5;7] , [11;20]];
ires = CL_intervInters(i1,i2,i3);

Report an issue
<< CL_intervDiff Math CL_intervInv >>