Class LinearBaseline
-
- All Implemented Interfaces:
Serializable
,Optimisable
,Descriptive
,Reflexive
- Direct Known Subclasses:
SinusoidalBaseline
public class LinearBaseline extends AdjustableBaseline
A linearBaseline
which specifies theintercept
andslope
parameters.The mathematical equivalent is the following expression:
g(x) = intercept + slope * x
. TheNumericPropertyKeyword
associated with theintercept
andslope
parameters can be used as fitting variables.- See Also:
HeatingCurve
,SearchTask
,ParameterVector
, Serialized Form
-
-
Field Summary
-
Fields inherited from class pulse.baseline.Baseline
MIN_BASELINE_POINTS
-
-
Constructor Summary
Constructors Constructor Description LinearBaseline()
A primitive constructor, which initialises aCONSTANT
baseline with zero intercept and slope.LinearBaseline(double intercept, double slope)
LinearBaseline(AdjustableBaseline baseline)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
assign(ParameterVector params)
Assigns parameter values of thisProblem
using the optimisation vectorparams
.Baseline
copy()
protected void
doFit(List<Double> x, List<Double> y)
Calculates the baseline parameters based on input arguments.Set<NumericPropertyKeyword>
listedKeywords()
Lists theintercept
as accessible property for thisFlatBaseline
.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
.String
toString()
-
Methods inherited from class pulse.baseline.AdjustableBaseline
getIntercept, getSlope, mean, setIntercept, setSlope, valueAt
-
Methods inherited from class pulse.baseline.Baseline
fitTo, fitTo, getDescriptor
-
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
-
-
-
-
Constructor Detail
-
LinearBaseline
public LinearBaseline()
A primitive constructor, which initialises aCONSTANT
baseline with zero intercept and slope.
-
LinearBaseline
public LinearBaseline(double intercept, double slope)
-
LinearBaseline
public LinearBaseline(AdjustableBaseline baseline)
-
-
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 rangerangeMin < t < rangeMax
. If no data is available, the method will NOT change the baseline parameters. Upon completion, the method will use the respectiveset
methods of this class to update the parameter values, triggering whatever events are associated with them.
-
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
.- Overrides:
set
in classAdjustableBaseline
- 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
.- Specified by:
optimisationVector
in interfaceOptimisable
- Overrides:
optimisationVector
in classAdjustableBaseline
- Parameters:
output
- the output vector where the result will be stored
-
assign
public void assign(ParameterVector params)
Assigns parameter values of thisProblem
using the optimisation vectorparams
. Only those parameters will be updated, the types of which are listed as indices in theparams
vector.- Specified by:
assign
in interfaceOptimisable
- Overrides:
assign
in classAdjustableBaseline
- Parameters:
params
- the optimisation vector, containing a similar set of parameters to thisProblem
- See Also:
PropertyHolder.listedTypes()
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
Description copied from class:AdjustableBaseline
Lists theintercept
as accessible property for thisFlatBaseline
.- Overrides:
listedKeywords
in classAdjustableBaseline
- Returns:
- a set containing
BASELINE_INTERCEPT
andBASELINE_SLOPE
keywords - See Also:
PropertyHolder
-
-