jas.statistics.functions
Class MultiTraceFunction

java.lang.Object
  extended by jas.statistics.functions.MultiTraceFunction
All Implemented Interfaces:
ISimEventListener, IDoubleSource, IUpdatableSource
Direct Known Subclasses:
MultiTraceFunction.Double, MultiTraceFunction.Float, MultiTraceFunction.Integer, MultiTraceFunction.Long

public abstract class MultiTraceFunction
extends java.lang.Object
implements IDoubleSource, IUpdatableSource, ISimEventListener

A MixFunction object is to collect data over time, computing some statistics on the fly, without storing the data in memory. It is particularly useful when the user need to compute basic statistics on data sources, without affecting the memory occupancy. The memoryless series computes automatically the statistics using accumulation variables and counters.
This statistic computer should be used when possible, particularly when the simulation model has to run for a long time, condition which implies the growth of the memory occupancy. Moreover the MemorylessSeries objects are much faster than the Series one, because they pre-compute the statistics operation step by step. Trying to compute a mean of a Series object, force the Mean function to sum all the values, every time series is updated.

Title: JAS

Description: Java Agent-based Simulation library

Copyright (C) 2002 Michele Sonnessa

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Author:
Michele Sonnessa


Nested Class Summary
static class MultiTraceFunction.Double
          An implementation of the MemorylessSeries class, which manages double type data sources.
static class MultiTraceFunction.Float
          An implementation of the MemorylessSeries class, which manages float type data sources.
static class MultiTraceFunction.Integer
          An implementation of the MemorylessSeries class, which manages integer type data sources.
static class MultiTraceFunction.Long
          An implementation of the MemorylessSeries class, which manages long type data sources.
 
Field Summary
static int COUNT
          Return the number of collected values.
static int LAST_VALUE
          Return the last collected value.
static int MAX
          Return the maximum collected value.
static int MEAN
          Return the mean of the collected values.
static int MIN
          Return the minimum collected value.
static int SUM
          Return the sum of collected values.
static int VARIANCE
          Return the variance of the collected values.
 
Fields inherited from interface jas.statistics.IDoubleSource
DEFAULT
 
Constructor Summary
MultiTraceFunction()
           
 
Method Summary
 int getCount()
           
 double getDoubleValue(int valueID)
          Compute one of the available statistical functions on the collected data.
abstract  double getMean()
           
abstract  double getVariance()
           
 void performAction(int actionType)
          ISimEventListener callback function.
 void updateSource()
          Collect a value from the source.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

COUNT

public static final int COUNT
Return the number of collected values.

See Also:
Constant Field Values

LAST_VALUE

public static final int LAST_VALUE
Return the last collected value.

See Also:
Constant Field Values

MAX

public static final int MAX
Return the maximum collected value.

See Also:
Constant Field Values

MEAN

public static final int MEAN
Return the mean of the collected values.

See Also:
Constant Field Values

MIN

public static final int MIN
Return the minimum collected value.

See Also:
Constant Field Values

SUM

public static final int SUM
Return the sum of collected values.

See Also:
Constant Field Values

VARIANCE

public static final int VARIANCE
Return the variance of the collected values.

See Also:
Constant Field Values
Constructor Detail

MultiTraceFunction

public MultiTraceFunction()
Method Detail

getCount

public int getCount()

getDoubleValue

public double getDoubleValue(int valueID)
Compute one of the available statistical functions on the collected data.

Specified by:
getDoubleValue in interface IDoubleSource
Parameters:
valueID - A unique identifier for a variable.
Returns:
The current double value of the required variable.

getMean

public abstract double getMean()

getVariance

public abstract double getVariance()

performAction

public void performAction(int actionType)
ISimEventListener callback function. It supports only jas.engine.Sim.EVENT_UPDATE event.

Specified by:
performAction in interface ISimEventListener
Parameters:
actionType - The action id. Only jas.engine.Sim.EVENT_UPDATE is supported.
Throws:
java.lang.UnsupportedOperationException - If actionType is not supported.

updateSource

public void updateSource()
Collect a value from the source.

Specified by:
updateSource in interface IUpdatableSource