Class StaticFloatBin1D
- java.lang.Object
-
- cern.colt.PersistentObject
-
- hep.aida.tfloat.bin.AbstractFloatBin
-
- hep.aida.tfloat.bin.AbstractFloatBin1D
-
- hep.aida.tfloat.bin.StaticFloatBin1D
-
- All Implemented Interfaces:
- FloatBufferConsumer, java.io.Serializable, java.lang.Cloneable
- Direct Known Subclasses:
- MightyStaticFloatBin1D
public class StaticFloatBin1D extends AbstractFloatBin1D
1-dimensional non-rebinnable bin consuming float elements; Efficiently computes basic statistics of data sequences. First see the package summary and javadoc tree view to get the broad picture.The data streamed into a SimpleBin1D is not preserved! As a consequence infinitely many elements can be added to this bin. As a further consequence this bin cannot compute more than basic statistics. It is also not rebinnable. If these drawbacks matter, consider to use a
DynamicFloatBin1D, which overcomes them at the expense of increased memory requirements.This class is fully thread safe (all public methods are synchronized). Thus, you can have one or more threads adding to the bin as well as one or more threads reading and viewing the statistics of the bin while it is filled. For high performance, add data in large chunks (buffers) via method addAllOf rather than piecewise via method add.
Implementation: Incremental maintainance. Performance linear in the number of elements added.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description StaticFloatBin1D()Constructs and returns an empty bin.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidadd(float element)Adds the specified element to the receiver.voidaddAllOfFromTo(FloatArrayList list, int from, int to)Adds the part of the specified list between indexes from (inclusive) and to (inclusive) to the receiver.voidclear()Removes all elements from the receiver.booleanisRebinnable()Returns false.floatmax()Returns the maximum.floatmin()Returns the minimum.intsize()Returns the number of elements contained in the receiver.floatsum()Returns the sum of all elements, which is Sum( x[i] ).floatsumOfSquares()Returns the sum of squares, which is Sum( x[i] * x[i] ).-
Methods inherited from class hep.aida.tfloat.bin.AbstractFloatBin1D
addAllOf, buffered, compareWith, equals, mean, rms, standardDeviation, standardError, toString, trimToSize, variance
-
Methods inherited from class hep.aida.tfloat.bin.AbstractFloatBin
center, center, error, error, offset, offset, value, value
-
Methods inherited from class cern.colt.PersistentObject
clone
-
-
-
-
Method Detail
-
add
public void add(float element)
Adds the specified element to the receiver.- Specified by:
addin classAbstractFloatBin1D- Parameters:
element- element to be appended.
-
addAllOfFromTo
public void addAllOfFromTo(FloatArrayList list, int from, int to)
Adds the part of the specified list between indexes from (inclusive) and to (inclusive) to the receiver.- Overrides:
addAllOfFromToin classAbstractFloatBin1D- Parameters:
list- the list of which elements shall be added.from- the index of the first element to be added (inclusive).to- the index of the last element to be added (inclusive).- Throws:
java.lang.IndexOutOfBoundsException- if list.size()>0 && (from<0 || from>to || to>=list.size()) .
-
clear
public void clear()
Removes all elements from the receiver. The receiver will be empty after this call returns.- Specified by:
clearin classAbstractFloatBin
-
isRebinnable
public boolean isRebinnable()
Returns false. Returns whether a client can obtain all elements added to the receiver. In other words, tells whether the receiver internally preserves all added elements. If the receiver is rebinnable, the elements can be obtained via elements() methods.- Specified by:
isRebinnablein classAbstractFloatBin
-
max
public float max()
Returns the maximum.- Specified by:
maxin classAbstractFloatBin1D
-
min
public float min()
Returns the minimum.- Specified by:
minin classAbstractFloatBin1D
-
size
public int size()
Returns the number of elements contained in the receiver.- Specified by:
sizein classAbstractFloatBin- Returns:
- the number of elements contained in the receiver.
-
sum
public float sum()
Returns the sum of all elements, which is Sum( x[i] ).- Specified by:
sumin classAbstractFloatBin1D
-
sumOfSquares
public float sumOfSquares()
Returns the sum of squares, which is Sum( x[i] * x[i] ).- Specified by:
sumOfSquaresin classAbstractFloatBin1D
-
-
DMelt 3.0 © DataMelt by jWork.ORG