Package pulse.baseline
Class AdjustableBaseline
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.baseline.Baseline
-
- pulse.baseline.AdjustableBaseline
-
- All Implemented Interfaces:
Serializable
,Optimisable
,Descriptive
,Reflexive
- Direct Known Subclasses:
FlatBaseline
,LinearBaseline
public abstract class AdjustableBaseline extends Baseline
A baseline that can shift in the vertical direction.- Author:
- Artem Lunev
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class pulse.baseline.Baseline
MIN_BASELINE_POINTS
-
-
Constructor Summary
Constructors Constructor Description AdjustableBaseline(double intercept, double slope)
Creates a flat baseline equal to the argument.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
assign(ParameterVector params)
Assigns parameter values of thisOptimisable
using the optimisation vectorparams
.NumericProperty
getIntercept()
Provides getter accessibility to the intercept as a NumericPropertyNumericProperty
getSlope()
Provides getter accessibility to the slope as a NumericPropertySet<NumericPropertyKeyword>
listedKeywords()
Lists theintercept
as accessible property for thisFlatBaseline
.protected double
mean(List<Double> x)
void
optimisationVector(ParameterVector output)
Calculates the vector argument defined on to the scalar objective function for thisOptimisable
.void
set(NumericPropertyKeyword type, NumericProperty property)
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)NumericPropert
ies in subclasses ofAccessible
.void
setIntercept(NumericProperty intercept)
Checks whetherintercept
is a baseline intercept property and updates the respective value of this baseline.void
setSlope(NumericProperty slope)
Checks whetherslope
is a baseline slope property and updates the respective value of this baseline.double
valueAt(double x)
Calculates the linear functiong(x) = intercept + slope*time
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedTypes, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Method Detail
-
valueAt
public double valueAt(double x)
Calculates the linear functiong(x) = intercept + slope*time
-
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
-
setIntercept
public void setIntercept(NumericProperty intercept)
Checks whetherintercept
is a baseline intercept property and updates the respective value of this baseline.- Parameters:
intercept
- aNumericProperty
of theBASELINE_INTERCEPT
type- See Also:
set(pulse.properties.NumericPropertyKeyword,pulse.properties.NumericProperty)
-
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
-
setSlope
public void setSlope(NumericProperty slope)
Checks whetherslope
is a baseline slope property and updates the respective value of this baseline.- Parameters:
slope
- aNumericProperty
of theBASELINE_SLOPE
type- See Also:
set(pulse.properties.NumericPropertyKeyword,pulse.properties.NumericProperty)
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
Lists theintercept
as accessible property for thisFlatBaseline
.- Overrides:
listedKeywords
in classPropertyHolder
- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
. - 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)
NumericPropert
ies in subclasses ofAccessible
. Typically this involves aswitch
statement that goes through the different options for thetype
and invokes differentset(...)
methods to update the matchingNumericProperty
withproperty
.- Specified by:
set
in classAccessible
- Parameters:
type
- the type, which must be equal by definition toproperty.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 to the scalar objective function for thisOptimisable
.- 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 thisOptimisable
using the optimisation vectorparams
. Only those parameters will be updated, the types of which are listed as indices in theparams
vector.- Parameters:
params
- the optimisation vector, containing a similar set of parameters to thisProblem
-
-