#include <histogram.h>
Public Methods | |
| histo_bin () | |
| ~histo_bin () | |
| double | frequency () |
| void | frequency (const double f) |
| double& | freqPtr () |
| double | start () |
| void | start (const double s) |
| double | end () |
| void | end (const double e) |
Private Attributes | |
| double | frequency_ |
| number of values, v, such that start <= v < end. More... | |
| double | start_ |
| start of bin value range. More... | |
| double | end_ |
| end of bin value range. More... | |
In a standard histogram a bin always contains a positive integer frequency (a.k.a. count of elements). This histogram bin object is designed to be operated on a floating point wavelet transform. So the frequency element is a double.
Definition at line 96 of file histogram.h.
|
|
Definition at line 107 of file histogram.h. 00107 {}
|
|
|
Definition at line 108 of file histogram.h. 00108 {}
|
|
|
Definition at line 119 of file histogram.h. 00119 { end_ = e; }
|
|
|
Definition at line 118 of file histogram.h. 00118 { return end_; }
|
|
|
Definition at line 113 of file histogram.h. 00113 { return frequency_; }
|
|
|
Definition at line 111 of file histogram.h. 00111 { frequency_ = f; }
|
|
|
Definition at line 110 of file histogram.h. 00110 { return frequency_; }
|
|
|
Definition at line 116 of file histogram.h. 00116 { start_ = s; }
|
|
|
Definition at line 115 of file histogram.h. 00115 { return start_; }
|
|
|
end of bin value range.
Definition at line 104 of file histogram.h. |
|
|
number of values, v, such that start <= v < end.
Definition at line 100 of file histogram.h. |
|
|
start of bin value range.
Definition at line 102 of file histogram.h. |
1.2.8.1 written by Dimitri van Heesch,
© 1997-2001