|
Isis 3 Programmer Reference
|
1 #ifndef MaximumLikelihoodWFunctions_h
2 #define MaximumLikelihoodWFunctions_h
130 QDataStream &write(QDataStream &stream)
const;
131 QDataStream &read(QDataStream &stream);
137 double huber(
double residualZScore);
139 double welsch(
double residualZScore);
140 double chen(
double residualZScore);
QDebug operator<<(QDebug debug, const Hillshade &hillshade)
Print this class out to a QDebug object.
double weightScaler(double residualZScore)
This provides the scalar for the weight (not the scaler for the square root of the weight,...
Model
The supported maximum likelihood estimation models.
void setModel(Model modelSelection)
Allows the maximum likelihood model to be changed together and the default tweaking constant to be se...
double tweakingConstantQuantile()
Suggest a quantile of the probility distribution of the residuals to use as the tweaking constants ba...
void setTweakingConstantDefault()
Sets default tweaking constants based on the maximum likelihood estimation model being used.
double huberModified(double residualZScore)
Modified Huber maximum likelihood estimation function evaluation.
double chen(double residualZScore)
Modified Huber maximum likelihood estimation function evaluation.
QString weightedResidualCutoff()
Method to return a string represtentation of the weighted residual cutoff (if it exists) for the Maxi...
static QString modelToString(Model model)
Static method to return a string represtentation for a given MaximumLikelihoodWFunctions::Model enum.
@ HuberModified
A modification to Huber's method propsed by William J.J.
MaximumLikelihoodWFunctions()
Sets up a maximumlikelihood estimation function with Huber model and default tweaking constant.
double tweakingConstant() const
Returns the current tweaking constant.
Model model() const
Accessor method to return the MaximumLikelihoodWFunctions::Model enumeration.
double m_tweakingConstant
The tweaking constant for the maximum likelihood models.
@ Welsch
The Welsch method aggresively discounts measures with large resiudals.
double huber(double residualZScore)
Huber maximum likelihood estimation function evaluation.
@ Huber
According to Zhang (Parameter Estimation: A Tutorial with application to conic fitting) "[Huber's] es...
Class provides maximum likelihood estimation functions for robust parameter estimation,...
double sqrtWeightScaler(double residualZScore)
This provides the scaler to the sqrt of the weight, which is very useful for building normal equation...
Model m_model
The enumerated value for the maximum likelihood estimation model to be used.
std::istream & operator>>(std::istream &is, CSVReader &csv)
Input read operator for input stream sources.
void setTweakingConstant(double tweakingConstant)
Allows the tweaking constant to be changed without changing the maximum likelihood function.
double welsch(double residualZScore)
Modified Huber maximum likelihood estimation function evaluation.
This is free and unencumbered software released into the public domain.
@ Chen
The Chen method was found in "Robust Regression with Projection Based M-estimators" Chen,...