Class FlatBaseline

    • Constructor Detail

      • FlatBaseline

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

        public FlatBaseline​(double intercept)
        Creates a flat baseline equal to the argument.
        Parameters:
        intercept - the constant baseline value.
    • 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