Class AdjustableBaseline

    • Constructor Detail

      • AdjustableBaseline

        public AdjustableBaseline​(double intercept,
                                  double slope)
        Creates a flat baseline equal to the argument.
        Parameters:
        intercept - the constant baseline value.
    • Method Detail

      • valueAt

        public double valueAt​(double x)
        Calculates the linear function g(x) = intercept + slope*time
        Specified by:
        valueAt in class Baseline
        Parameters:
        x - the argument of the linear function
        Returns:
        the result of this simple calculation
      • mean

        protected double mean​(List<Double> x)
      • getIntercept

        public NumericProperty getIntercept()
        Provides getter accessibility to the intercept as a NumericProperty
        Returns:
        a NumericProperty derived from NumericPropertyKeyword.BASELINE_INTERCEPT where the value is set to that of slope
      • getSlope

        public NumericProperty getSlope()
        Provides getter accessibility to the slope as a NumericProperty
        Returns:
        a NumericProperty derived from NumericPropertyKeyword.BASELINE_SLOPE with a value equal to slop
      • listedKeywords

        public Set<NumericPropertyKeyword> listedKeywords()
        Lists the intercept as accessible property for this FlatBaseline.
        Overrides:
        listedKeywords in class PropertyHolder
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
        See Also:
        PropertyHolder
      • 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.
      • optimisationVector

        public void optimisationVector​(ParameterVector output)
        Description copied from interface: Optimisable
        Calculates the vector argument defined on Rn to the scalar objective function for this Optimisable.
        Parameters:
        output - the output vector where the result will be stored
      • assign

        public void assign​(ParameterVector params)
        Description copied from interface: Optimisable
        Assigns parameter values of this Optimisable using the optimisation vector params. Only those parameters will be updated, the types of which are listed as indices in the params vector.
        Parameters:
        params - the optimisation vector, containing a similar set of parameters to this Problem