Constructs a linear least squares fit to a straight line from input data.
More...
#include <rw/lsqfit.h>
The class LeastSqFit constructs a linear least squares fit to a straight line from input data, with or without weighting factors. This class is of precision double. Once a LeastSqFit is constructed, various methods are provided to interrogate it.
- Synopsis
#include <rw/lsqfit.h>
#include <rw/math/mathvec.h>
Constructs a linear least squares fit to the data in vectors x and y, without weights. Similar indices of the vectors x(i) and y(i) are assumed to represent (x,y) pairs. The vectors need not be the same length; trailing unmatched points are ignored.
Constructs a linear least squares fit to the data in vectors x and y, using a set of known standard deviations for the y values. Similar indices of the vectors x(i) and y(i) are assumed to represent (x,y) pairs. These values are weighted according to the y standard deviations given as \(1/sigmay(i)^{2}\). The vectors need not be the same length; trailing unmatched points are ignored.
double LeastSqFit::correlationCoeff |
( |
| ) |
const |
|
inline |
Returns the sample linear correlation coefficient of the fit.
double LeastSqFit::intercept |
( |
| ) |
const |
|
inline |
Returns the intercept of the line.
double LeastSqFit::interceptStandardDev |
( |
| ) |
const |
|
inline |
Returns the standard deviation of the calculated intercept. If the standard deviations of the data is given, the standard deviation for the intercept is calculated appropriately. In the unweighted case, the standard deviation is estimated by factoring in the variance of the data from the calculated line.
double LeastSqFit::slope |
( |
| ) |
const |
|
inline |
Returns the slope of the line.
double LeastSqFit::slopeStandardDev |
( |
| ) |
const |
|
inline |
Returns the standard deviation of the calculated slope. If the standard deviations of the data are given, the standard deviation for the slope is calculated appropriately. In the unweighted case, the standard deviation is estimated by factoring in the variance of the data from the calculated line.
double LeastSqFit::xPosition |
( |
double |
y | ) |
const |
|
inline |
Using the linear fit, returns the value x
corresponding to y.
double LeastSqFit::yPosition |
( |
double |
x | ) |
const |
|
inline |
Using the linear fit, returns the value y
corresponding to x.
std::ostream& operator<< |
( |
std::ostream & |
s, |
|
|
const LeastSqFit & |
f |
|
) |
| |
|
friend |
Outputs a summary of the linear fit f on std::ostream s.