|
typedef map< Number, Number > | Points |
|
typedef std::map< Number, Number > | Points |
|
|
| PowerLawFit (Points *points) |
|
| PowerLawFit (const PowerLawFit &fit) |
|
const PowerLawFit & | operator= (const PowerLawFit &fit) |
|
virtual void | fit () |
|
virtual void | fit (Points *points) |
|
const Number | getExponent () const |
|
const Number | getCoefficient () const |
|
| LinearFit (Points *points) |
|
| LinearFit (const LinearFit &fit) |
|
const LinearFit & | operator= (const LinearFit &fit) |
|
const Number | getSlope () const |
|
const Number | getIntercept () const |
|
const Number | getRegressionCoefficient () const |
|
|
Points * | _data |
| Points provided on input.
|
|
Points | _logData |
| Transient (for internal use) array used to hold the log 0f _data.
|
|
Number | _exponent |
| Exponent of the power law.
|
|
Number | _coeff |
| Multiplicative Coefficient of the power law.
|
|
Points * | _points |
|
Number | _a |
| Slope.
|
|
Number | _b |
| Intercept.
|
|
Number | _r |
| Regression.
|
|
template<typename Number>
class PowerLawFit< Number >
Definition at line 4 of file PowerLawFit.h.
template<typename Number >
Perform linear fit on given points. Store reference to given points and call "fit()" to actually perform the fit.
Reimplemented from LinearFit< Number >.
Definition at line 80 of file PowerLawFit.h.
The documentation for this class was generated from the following file: