Package mgui.models.dynamic.stats
Interface DynamicModelStatistics
- All Superinterfaces:
DynamicModelEnvironmentListener
- All Known Implementing Classes:
SimpleStatistics
public interface DynamicModelStatistics extends DynamicModelEnvironmentListener
-
Method Summary
Modifier and Type Method Description double[]getCurrentSet()double[]getError()doublegetMean()intgetN()doublegetRootMeanSquaredError()double[]getSquaredError()double[]getTestSet()voidsetCurrentSet(double[] set)voidsetTestSet(double[] set)Methods inherited from interface mgui.models.dynamic.DynamicModelEnvironmentListener
environmentUpdated
-
Method Details
-
getSquaredError
double[] getSquaredError() -
getError
double[] getError() -
getRootMeanSquaredError
double getRootMeanSquaredError() -
getMean
double getMean() -
getN
int getN() -
getTestSet
double[] getTestSet() -
setTestSet
void setTestSet(double[] set) -
getCurrentSet
double[] getCurrentSet() -
setCurrentSet
void setCurrentSet(double[] set)
-