|
Numeric Histogram Array class
|
Methods
|
|
GetDeltaX
GetRange
Update
__del__
__init__
|
|
|
GetDeltaX
|
GetDeltaX ( self )
X increment per bin
|
|
|
GetRange
|
GetRange ( self, prob )
Returns the range enclosing a 1-prob probability
|
|
|
Update
|
Update ( self, field )
Adds a new multidimensional item field to the histogram
|
|
|
__del__
|
__del__ ( self )
Destructor of the NHArray class
|
|
|
__init__
|
__init__ (
self,
xl,
xu,
nbins,
elems,
)
Constructor for the NHArray class
Arguments:
-
xl
- Lower limit for the histograms
-
xu
- Upper limit for the histograms
-
nbins
- Number of bins (classes) of the histograms
-
elems
- Number of histograms to be hold. Usually a multiply.reduce of
the shape of the data.
|
|