Package pulse.search.statistics
Class SumOfSquares
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
- Direct Known Subclasses:
RangePenalisedLeastSquares
,RegularisedLeastSquares
public class SumOfSquares extends OptimiserStatistic
The standard optimality criterion of the L2 norm condition, or simply ordinary least squares.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SumOfSquares()
SumOfSquares(SumOfSquares sos)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OptimiserStatistic
copy()
void
evaluate(GeneralTask t)
Calculates the sum of squared deviations usingcurve
as reference.String
getDescriptor()
If not null, will return the prefix, otherwise calls the superclass method.double
variance()
-
Methods inherited from class pulse.search.statistics.OptimiserStatistic
getSelectedOptimiserDescriptor, setSelectedOptimiserDescriptor
-
Methods inherited from class pulse.search.statistics.ResidualStatistic
calculateResiduals, calculateResiduals, calculateResiduals, equals, getResiduals, getStatistic, getTimeSequence, hashCode, residualsArray, set, setStatistic
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedKeywords, 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
-
SumOfSquares
public SumOfSquares()
-
SumOfSquares
public SumOfSquares(SumOfSquares sos)
-
-
Method Detail
-
evaluate
public void evaluate(GeneralTask t)
Calculates the sum of squared deviations usingcurve
as reference.This calculates , where is the temperature value corresponding to the
time
at indexi
for the referencecurve
. Note that the time corresponds to the reference's time list, which generally does not match to that of this heating curve. The is the interpolated value.
-
getDescriptor
public String getDescriptor()
Description copied from class:PropertyHolder
If not null, will return the prefix, otherwise calls the superclass method.- Overrides:
getDescriptor
in classPropertyHolder
- Returns:
- the descriptor
- See Also:
Group.getSimpleName()
-
variance
public double variance()
- Specified by:
variance
in classOptimiserStatistic
-
copy
public OptimiserStatistic copy()
- Specified by:
copy
in classOptimiserStatistic
-
-