Definition at line 29 of file BasicHist.java.
Public Methods | |
| BasicHist (int numBins, double lo, double hi) | |
| The constructor will create an array of a given number of bins. | |
| void | add (double x) |
| Add an entry to a bin. | |
| void | clear () |
| Clear the histogram bins. | |
| int | getValue (int bin) |
| Provide access to the bin values. | |
|
||||||||||||||||
|
The constructor will create an array of a given number of bins. The range of the histogram given by the upper and lower limt values. Definition at line 44 of file BasicHist.java. |
|
|
Add an entry to a bin. Include if value is in the range lo <= x < hi Definition at line 59 of file BasicHist.java. |
|
|
Clear the histogram bins. * Definition at line 75 of file BasicHist.java. |
|
|
Provide access to the bin values. * Definition at line 84 of file BasicHist.java. |
1.2.18