Package pulse.input

Class Range

    • Field Detail

      • UNLIMITED

        public static final Range UNLIMITED
      • NEGATIVE

        public static final Range NEGATIVE
      • POSITIVE

        public static final Range POSITIVE
    • Constructor Detail

      • Range

        public Range​(List<Double> data)
        Constructs a Range from the minimum and maximum values of data.
        Parameters:
        data - a list of double values
      • Range

        public Range​(double a,
                     double b)
        Constructs a new Range based on the segment specified by a and b
        Parameters:
        a - a double value
        b - another double value
    • Method Detail

      • filter

        public List<Double>[] filter​(DiscreteInput input)
        Contains a data double array ([0] - x, [1] - y), where the data points have been filtered so that each x fits into this range.
        Parameters:
        input -
        Returns:
        a [2][...] array containing filtered x and y values
      • reset

        public void reset​(IndexRange range,
                          List<Double> data)
        Resets the minimum and maximum values of this range to those specified by the elements of data, the indices of which correspond to the lower and upper bound of the IndexRange.
        Parameters:
        range - an object specifying the start/end indices in regard to the data list
        data - a list of double values (usually, a time sequence)
      • getLowerBound

        public NumericProperty getLowerBound()
        Gets the numeric property defining the lower bound of this range.
        Returns:
        the lower bound (usually referring to a time sequence).
      • getUpperBound

        public NumericProperty getUpperBound()
        Gets the numeric property defining the upper bound of this range.
        Returns:
        the upper bound (usually referring to a time sequence).
      • setLowerBound

        public void setLowerBound​(NumericProperty p)
        Sets the lower bound and triggers firePropertyChanged.
        Parameters:
        p - a numeric property with the required LOWER_BOUND type.
      • setUpperBound

        public void setUpperBound​(NumericProperty p)
        Sets the upper bound and triggers firePropertyChanged.
        Parameters:
        p - a numeric property with the required UPPER_BOUND type.
      • getSegment

        public Segment getSegment()
        Gets the segment representing this range
        Returns:
        a segment
      • updateMinimum

        protected void updateMinimum​(NumericProperty p)
        Updates the lower bound of this range using the information contained in p. Since this is not fail-safe, the method has been made protected.
        Parameters:
        p - a NumericProperty representing the laser pulse width.
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty property)
        Description copied from class: Accessible

        An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.
      • boundLimits

        public Segment boundLimits​(boolean isUpperBound)
        Calculates the allowed range for either the upper or lower bound.
        Parameters:
        isUpperBound - if true, will calculate the range for the upper bound, otherwise -- for the lower one.,
        Returns:
        a Segment range of limits for the specific bound
      • optimisationVector

        public void optimisationVector​(ParameterVector output)
        The optimisation vector contain both the lower and upper bounds with the absolute constraints equal to a fourth of their values.
        Specified by:
        optimisationVector in interface Optimisable
        Parameters:
        output - the vector to be updated