Class SinusoidalBaseline

    • Constructor Detail

      • SinusoidalBaseline

        public SinusoidalBaseline()
        Creates a sinusoidal baseline with default properties.
    • Method Detail

      • valueAt

        public double valueAt​(double x)
        Description copied from class: AdjustableBaseline
        Calculates the linear function g(x) = intercept + slope*time
        Overrides:
        valueAt in class AdjustableBaseline
        Parameters:
        x - the argument of the linear function
        Returns:
        the result of this simple calculation
      • assign

        public void assign​(ParameterVector output)
        Description copied from class: LinearBaseline
        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 LinearBaseline
        Parameters:
        output - the optimisation vector, containing a similar set of parameters to this Problem
        See Also:
        PropertyHolder.listedTypes()
      • subgroups

        public List<Group> subgroups()
        Description copied from class: Group

        Tries to access getter methods to retrieve all Accessible instances belonging to this object. Ignores any methods that return instances of the same class as this one.

        Overrides:
        subgroups in class Group
        Returns:
        a List containing Accessible objects which could be accessed by the declared getter methods.
      • setHiFreqMax

        public void setHiFreqMax​(NumericProperty maxHarmonics)
      • setLowFreqMax

        public void setLowFreqMax​(NumericProperty maxHarmonics)
      • 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 LinearBaseline
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.
      • fitTo

        public void fitTo​(DiscreteInput input)
        Description copied from class: Baseline
        Calls fitTo using the default time range for the data: -Infinity < t < ZERO_LEFT, where the upper bound is a small negative constant.
        Overrides:
        fitTo in class Baseline
        Parameters:
        input - the experimental data stretching to negative time values
        See Also:
        fitTo(ExperimentalData,double,double)