Class LinearBaseline

    • Constructor Detail

      • LinearBaseline

        public LinearBaseline()
        A primitive constructor, which initialises a CONSTANT baseline with zero intercept and slope.
      • LinearBaseline

        public LinearBaseline​(double intercept,
                              double slope)
    • Method Detail

      • doFit

        protected void doFit​(List<Double> x,
                             List<Double> y)
        Description copied from class: Baseline
        Calculates the baseline parameters based on input arguments.

        This usually runs a simple least-squares estimation of the parameters of this baseline using the specified data within the time range rangeMin < t < rangeMax. If no data is available, the method will NOT change the baseline parameters. Upon completion, the method will use the respective set methods of this class to update the parameter values, triggering whatever events are associated with them.

        Specified by:
        doFit in class Baseline
      • 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.

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

        public void assign​(ParameterVector params)
        Assigns parameter values of this Problem using the optimisation vector params. Only those parameters will be updated, the types of which are listed as indices in the params vector.
        Specified by:
        assign in interface Optimisable
        Overrides:
        assign in class AdjustableBaseline
        Parameters:
        params - the optimisation vector, containing a similar set of parameters to this Problem
        See Also:
        PropertyHolder.listedTypes()