|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.statistics.functions.AbstractFunction
jas.statistics.functions.MovingAverageTraceFunction
public class MovingAverageTraceFunction
This class computes the average of the last values collected from a data source. The number of values used to compute the average value is specified in the constructor. The mean function return always double values, so it implements only the IDoubleSource interface.
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.
Field Summary |
---|
Fields inherited from interface jas.statistics.IDoubleSource |
---|
DEFAULT |
Constructor Summary | |
---|---|
MovingAverageTraceFunction(IDoubleSource source,
int valueID,
int windowSize)
Create a basic statistic probe on a IDblSource object. |
|
MovingAverageTraceFunction(IFloatSource source,
int valueID,
int windowSize)
Create a basic statistic probe on a IDblSource object. |
|
MovingAverageTraceFunction(IIntSource source,
int valueID,
int windowSize)
Create a basic statistic probe on a IDblSource object. |
|
MovingAverageTraceFunction(ILongSource source,
int valueID,
int windowSize)
Create a basic statistic probe on a IDblSource object. |
Method Summary | |
---|---|
void |
applyFunction()
Collect a value from the source. |
double |
getDoubleValue(int valueID)
Return the result of a given statistic. |
void |
performAction(int actionType)
ISimEventListener callback function. |
Methods inherited from class jas.statistics.functions.AbstractFunction |
---|
isCheckingTime, setCheckingTime, updateSource |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MovingAverageTraceFunction(IDoubleSource source, int valueID, int windowSize)
name
- Name of the statistic object.source
- The IDblSource object.valueID
- The value identifier defined by source object.public MovingAverageTraceFunction(IFloatSource source, int valueID, int windowSize)
name
- Name of the statistic object.source
- The IDblSource object.valueID
- The value identifier defined by source object.public MovingAverageTraceFunction(IIntSource source, int valueID, int windowSize)
name
- Name of the statistic object.source
- The IDblSource object.valueID
- The value identifier defined by source object.public MovingAverageTraceFunction(ILongSource source, int valueID, int windowSize)
name
- Name of the statistic object.source
- The IDblSource object.valueID
- The value identifier defined by source object.Method Detail |
---|
public void applyFunction()
applyFunction
in class AbstractFunction
public double getDoubleValue(int valueID)
getDoubleValue
in interface IDoubleSource
valueID
- One of the F_ constants representing available statistics.
java.lang.UnsupportedOperationException
- If the given valueID is not supported.public void performAction(int actionType)
performAction
in interface ISimEventListener
performAction
in class AbstractFunction
actionType
- The action id. Only jas.engine.Sim.EVENT_UPDATE is supported.
java.lang.UnsupportedOperationException
- If actionType is not supported.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |