ResidualEquation.h

Classes

ResidualEquation -- Interface class containing functions returning "Domain" type (full description)

template<class Domain> class ResidualEquation

Interface

Public Members
virtual ~ResidualEquation()
virtual Bool residual(Domain & answer, const LinearModel<Domain> & model) = 0
virtual Bool residual(Domain & answer, Float & chisq, const LinearModel<Domain> & model) = 0
virtual Bool residual(Domain & answer, Float & chisq, Domain & mask, const LinearModel<Domain> & model) = 0

Description

Review Status

Date Reviewed:
yyyy/mm/dd

Prerequisite

Etymology

ResidualEquation reflects the fact that the residual() function was the first, and perhaps most important member of the class.

Synopsis

ResidualEquation is an abstract interface class into the more extensive LinearEquation class. It is composed of the subset of functions from LinearEquation which return objects of the "Domain", type. These objects can be used by the solve() function in the LinearModel to determine a new model. The separation of the ResidualEquation functions isolates the model, of type "Domain" from knowing what the data "Range", used by the LinearEquation class is.

Example

Suppose we have a simple class that has a vector model and knows (using the solve() function) how to update this vector if it is told the error betweeen the measured data and a model of the data produced using the current vector.
    SimpleModel< Vector<Float> > simplemodel;
    

Suppose we also have a big complicated equation that does the forward modelling from vectors to some arbitrary class;

    FancyEquation<Vector<Float>, VisibilitySet> eqn;
    

Then Simplemodel class does not need to know anything about the VisibilitySet class as it knows that the FancyEquation class will have (via inheritence) a ResidualEquation interface which returns vectors, so that it can use code like:

    Vector<Float> error;
    if (eqn.residual(*this, error)){ 
      use the error to determine a new model
    }
    
as part of the solve function.

Motivation

The main reason for the existence of this class is to isolate the type of the model ("Domain" type) from knowing what the "Range" of the equation is.

Template Type Argument Requirements (Domain)

Thrown Exceptions

To Do

Member Description

virtual ~ResidualEquation()

A virtual destructor may be necessary for use in derived classes.

virtual Bool residual(Domain & answer, const LinearModel<Domain> & model) = 0

The canonical member of this class defines a function which gives the residual when the model is propagated through the equation and compared with the data. It returns False if the answer could not be computed.

virtual Bool residual(Domain & answer, Float & chisq, const LinearModel<Domain> & model) = 0

Same as above, but also calculates Chi^2 (rms of residual image)

virtual Bool residual(Domain & answer, Float & chisq, Domain & mask, const LinearModel<Domain> & model) = 0

Same as above, but also calculates Chi^2 (rms of residual image) considering a mask image