|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.tools.math.Averagable
public abstract class Averagable
Superclass for all objects which can be averaged. Averagable objects can be stored in a average vector.
Field Summary | |
---|---|
private int |
averageCount
Counts the number of times, build average was executed. |
private double |
meanSquaredSum
The squared averages are summed up each time buildAverage is called. |
private double |
meanSum
The averages are summed up each time buildAverage is called. |
Constructor Summary | |
---|---|
Averagable()
|
Method Summary | |
---|---|
void |
buildAverage(Averagable averagable)
This method builds the makro average of two averagables of the same type. |
protected abstract void |
buildSingleAverage(Averagable averagable)
This method should build the average of this and another averagables of the same type. |
java.lang.Object |
clone()
Returns a (deep) clone of this averagable. |
protected abstract void |
cloneAveragable(Averagable other)
Must be implemented by subclasses such that it copies all values of other to this . |
protected java.lang.String |
formatDeviation(double dev)
Formats the standard deviation for the toString() method. |
boolean |
formatPercent()
Indicates wether or not percentage format should be used in the toString() method. |
protected java.lang.String |
formatValue(double value)
Formats the value for the toString() method. |
double |
getAverage()
This method returns the makro average if it was defined and the mikro average (the current value) otherwise. |
double |
getMakroAverage()
Returns the average value of all performance criteria average by using the buildAverage(Averagable) method. |
double |
getMakroStandardDeviation()
Returns the standard deviation of all performance criteria average by using the buildAverage(Averagable) method. |
double |
getMakroVariance()
Returns the variance of all performance criteria average by using the buildAverage(Averagable) method. |
abstract double |
getMikroAverage()
Returns the (current) value of the averagable (the average itself). |
double |
getMikroStandardDeviation()
Returns the standard deviation of the performance criterion. |
abstract double |
getMikroVariance()
Returns the variance of the averagable. |
abstract java.lang.String |
getName()
Returns the name of this averagable. |
double |
getStandardDeviation()
This method returns the makro standard deviation if it was defined and the mikro standard deviation otherwise. |
double |
getVariance()
This method returns the makro variance if it was defined and the mikro variance otherwise. |
java.lang.String |
toHTML()
Returns a HTML result string. |
java.lang.String |
toString()
|
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter |
---|
addAction, getActions, getVisualisationComponent, toHTML, toResultString |
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject |
---|
copy, read, read, read, write, write |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.lang.Comparable |
---|
compareTo |
Methods inherited from interface edu.udo.cs.yale.operator.IOObject |
---|
copy, write, write |
Field Detail |
---|
private double meanSum
private double meanSquaredSum
private int averageCount
Constructor Detail |
---|
public Averagable()
Method Detail |
---|
public abstract java.lang.String getName()
getName
in interface ResultObject
getName
in class ResultObjectAdapter
public abstract double getMikroAverage()
public abstract double getMikroVariance()
protected abstract void cloneAveragable(Averagable other)
other
to this
. When this method is called,
it is guaranteed, that other
is a subclass of the class of
the object it is called on.
protected abstract void buildSingleAverage(Averagable averagable)
SimpleCriterion
for a simple
implementation example.
public final void buildAverage(Averagable averagable)
this
and
performance
are the same and if the getName()
methods return the same String. Otherwise a RuntimeException is thrown.
averagable.
getMikroAverage()
is
added to meanSum
, its square is added to
meanSquaredSum
and averageCount
is increased by one.
These values are used in the getMakroAverage()
and
getMakroVariance()
methods. this
averagable and the given
averagable
. They must be weighted by the number of
examples used for calculating the averagables.
public final double getAverage()
getFitness()
of performance criteria.
public final double getVariance()
public final double getStandardDeviation()
public final double getMikroStandardDeviation()
public final double getMakroAverage()
buildAverage(Averagable)
method.
public final double getMakroVariance()
buildAverage(Averagable)
method.
public final double getMakroStandardDeviation()
buildAverage(Averagable)
method.
public java.lang.Object clone()
clone
in class java.lang.Object
public boolean formatPercent()
toString()
method. The default implementation returns false.
protected java.lang.String formatValue(double value)
toString()
method.
protected java.lang.String formatDeviation(double dev)
toString()
method.
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toHTML()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |