Uses of Class
xal.tools.math.Interval

Packages that use Interval
Package
Description
 
Package containing related class for representing functions.
  • Uses of Interval in xal.tools.math

    Subclasses of Interval in xal.tools.math
    Modifier and Type
    Class
    Description
    class 
    Represents a closed interval of the real line.
    class 
    Represents an open interval of the real line.
    Fields in xal.tools.math declared as Interval
    Modifier and Type
    Field
    Description
    static final Interval
    Interval.REAL_LINE
    The entire real line
    Methods in xal.tools.math that return Interval
    Modifier and Type
    Method
    Description
    Interval.convexHull(Interval interval)
    Compute and return the smallest interval containing both this interval and the argument interval (i.e., the union of they are intersected).
    static Interval
    Interval.createFromEndpoints(double dblMin, double dblMax)
    Creates a new interval object according to the given endpoints.
    static Interval
    Interval.createFromMidpoint(double dblMidpt, double dblLng)
    Creates an interval object given the midpoint (centroid) of the interval and the length of the interval (which is the Lebesgue measure).
    Interval.intersection(Interval interval)
    Compute and return the largest interval contained in this interval and the argument interval (i.e., the intersection).
    Methods in xal.tools.math with parameters of type Interval
    Modifier and Type
    Method
    Description
    boolean
    Interval.containsAE(Interval interval)
    Contains Almost Everywhere - ⊂ a.e.
    Interval.convexHull(Interval interval)
    Compute and return the smallest interval containing both this interval and the argument interval (i.e., the union of they are intersected).
    boolean
    OpenInterval.intersect(Interval interval)
    Is there a nonzero intersection between this interval and the argument.
    Interval.intersection(Interval interval)
    Compute and return the largest interval contained in this interval and the argument interval (i.e., the intersection).
    boolean
    Interval.intersects(Interval interval)
    Inspects for non-empty intersection with the given interval.
    Constructors in xal.tools.math with parameters of type Interval
    Modifier
    Constructor
    Description
     
    Copy constructor - create a new open interval initialized to the argument.
     
    Interval(Interval interval)
    Copy constructor - create a new open interval initialized to the argument.
     
    Copy constructor - create a new open interval initialized to the argument.
  • Uses of Interval in xal.tools.math.fnc

    Methods in xal.tools.math.fnc that return Interval
    Modifier and Type
    Method
    Description
    default Interval
    IRealFunction.getDomain()
    Returns the domain of the function.