casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Types | Public Member Functions | Protected Attributes
casa::Function< T, U > Class Template Reference

Numerical functional interface class. More...

#include <Function.h>

Inheritance diagram for casa::Function< T, U >:
casa::Functional< FunctionTraits< T >::ArgType, U > casa::Functional< Vector< FunctionTraits< T >::ArgType >, U > casa::Function1D< T, U > casa::Function1D< AutoDiff< T > > casa::Function1D< AutoDiffA< T > > casa::Function1D< Domain, Range > casa::ChebyshevParam< AutoDiff< T > > casa::EvenPolynomialParam< AutoDiff< T > > casa::Gaussian1DParam< AutoDiff< T > > casa::Lorentzian1DParam< AutoDiff< T > > casa::OddPolynomialParam< AutoDiff< T > > casa::PolynomialParam< AutoDiff< T > > casa::Sinusoid1DParam< AutoDiff< T > > casa::ChebyshevParam< AutoDiffA< T > > casa::Interpolate1D< Domain, Range >

List of all members.

Public Types

typedef FunctionTraits< T >
::ArgType 
ArgType
typedef const ArgTypeFunctionArg

Public Member Functions

 Function ()
 Constructors.
 Function (const uInt n)
 Function (const Vector< T > &in)
 Function (const FunctionParam< T > &other)
template<class W , class X >
 Function (const Function< W, X > &other)
 Function (const Function< T, U > &other)
virtual ~Function ()
 Destructor.
virtual uInt ndim () const =0
 Returns the number of dimensions of function.
uInt nparameters () const
 Returns the number of parameters.
virtual U eval (FunctionArg x) const =0
 Evaluate the function object.
T & operator[] (const uInt n)
 Manipulate the nth parameter (0-based) with no index check.
const T & operator[] (const uInt n) const
virtual U operator() () const
 Evaluate this function object at xor at x, y.
virtual U operator() (const ArgType &x) const
virtual U operator() (const Vector< ArgType > &x) const
virtual U operator() (FunctionArg x) const
virtual U operator() (const ArgType &x, const ArgType &y) const
virtual U operator() (const ArgType &x, const ArgType &y, const ArgType &z) const
virtual const Stringname () const
 Specify the name associated with the function (default will be unknown)
Boolmask (const uInt n)
 Manipulate the mask associated with the nth parameter (e.g.
const Boolmask (const uInt n) const
const FunctionParam< T > & parameters () const
 Return the parameter interface.
FunctionParam< T > & parameters ()
const Vector< ArgType > & argp () const
 Get arg_p and parset_p.
Bool parsetp () const
void lockParam ()
 Compiler cannot always find the correct 'const' version of parameter access.
void unlockParam ()
virtual void setMode (const RecordInterface &mode)
 get/set the function mode.
virtual void getMode (RecordInterface &mode) const
virtual Bool hasMode () const
 return True if the implementing function supports a mode.
ostream & print (ostream &os) const
 Print the function (i.e.
virtual Function< T, U > * clone () const =0
 Return a copy of this object from the heap.
virtual Function< typename
FunctionTraits< T >::DiffType > * 
cloneAD () const
virtual Function< typename
FunctionTraits< T >::BaseType > * 
cloneNonAD () const

Protected Attributes

FunctionParam< T > param_p
 
   

Vector< ArgTypearg_p
 Aid for non-contiguous argument storage.
Bool parset_p
 Indicate parameter written.
Bool locked_p
 Indicate that parameters are expected to be locked from changing.

Detailed Description

template<class T, class U = T>
class casa::Function< T, U >

Numerical functional interface class.

Intended use:

Public interface

Review Status

Reviewed By:
tcornwel
Date Reviewed:
1996/02/22
Test programs:
tGaussian2D

Prerequisite

Synopsis

A Function is used for classes which map a scalar or n-dimensional Vector of type T into a T. The object also has zero or more parameters which can be masked if necessary, and be used in the Fitting module, and, implicitly, in the AutoDiff differentiation module.

The parameter interface is provided by the FunctionParam class.

A Function can have a name() which can be used in generic interfaces.

The function calls implemented are:

The T in the above is the Function::ArgType as derived from the FunctionTraits class. These calls are (in debug mode) tested for the correct number of arguments, after which they call a T eval(FunctionArg x) const = 0 to be implemented in derived classes. The derived class should also implement an uInt ndim() const = 0. The derived class can access the nth parameter with the [n] operator, and the corresponding mask with mask(n) method. The variables are referenced with x[i].

Example

A complete implementation of say an A.sin(2pi.f.x) with parameters amplitude(A) and frequency(f) and variable time(x) could be:

      //# Sinusoid.h
      #include <casa/aips.h>
      #include <scimath/Functionals/Function.h>
      #include <casa/BasicSL/Constants.h>
      #include <casa/BasicMath/Math.h>
      // The sinusoid class
      template<class T> class Sinusoid : public Function<T> {
       public:
        // For easy reference of the parameters
        enum { AMPL=0, FREQ };
        // Constructors. Defaults are A=1, f=1
        Sinusoid() : Function<T>(2) {
            param_p[AMPL] = T(1.0); param_p[FREQ] = T(1.0); }
        explicit Sinusoid(const T &ampl) : Function<T>(2) {
            param_p[AMPL] = ampl; param_p[FREQ] = T(1.0); }
        Sinusoid(const T &ampl, const T &freq) : Function<T>(2) {
            param_p[AMPL] = ampl; param_p[FREQ] = freq; }
        Sinusoid(const Sinusoid &other) : Function<T>(2) {
            param_p[AMPL] = other.param_p[AMPL];
            param_p[FREQ] = other.parameter[FREQ]; }
        Sinusoid<T> &operator=(const Sinusoid<T> &other) {
            if (this != &other) param_p = other.param_p;
            return *this; }
        virtual ~Sinusoid() {}
        // Dimensionality
        virtual uInt ndim() const { return 2; }
        // Evaluate
        virtual T eval(Function<T>::FunctionArg x) const {
          return param_p[AMPL]*sin(T(C::_2pi)*param_p[FREQ]*x[0]); }
        // Copy it
        virtual Function<T> *clone() const { return new Sinusoid<T>(param_p); }
      };

The following will calculate the value and the derivative for A=2; f=3; x=0.1;

        // The function objects for value, and for value + derivative
        Sinusoid<Double> soid1(2.0, 3.0);
        typedef AutoDiff<Double> Adif;
        Sinusoid<Adif> soid2(Adif(2,2,0), Adif(3,2,1));
        cout << "Value: " << soid1(0.1) << endl;
        cout << "(val, deriv): " << soid2(Adif(0.1)) << endl;

A shorter version, where all parameter handling is done at user level could be:

      //# Sinusoid.h
      #include <casa/aips.h>
      #include <scimath/Functionals/Function.h>
      #include <casa/BasicSL/Constants.h>
      #include <casa/BasicMath/Math.h>
      template<class T> class Sinusoid : public Function<T> {
       public:
        enum { AMPL=0, FREQ };
        Sinusoid() : Function<T>(2){param_p[AMPL] T(1);param_p[FREQ]=T(1);}
        virtual ~Sinusoid() {}
        virtual uInt ndim() const { return 2; }
        virtual T eval(Function<T>::FunctionArg x) const {
          return param_p[AMPL]*sin(T(C::_2pi)*param_p[FREQ]*x[0]); }
        virtual Function<T> *clone() const { return new Sinusoid<T>param_p; }
      };

The following will calculate the value and the derivative for A=2; f=3; x=0.1;

        // The function objects for value, and for value + derivative
        typedef AutoDiff<Double> Adif;
        typedef Function<Double> FD;
        typedef Function<AutoDiff<Double> > FAdif
        Sinusoid<Double> soid1;
        Sinusoid<Adif> soid2;
        soid1[FD::AMPL] = 2; soid1[FD::FREQ] = 3;
        soid2[FAdif::AMPL] = Adif(2,2,0);
        soid2[FAdif::FREQ] = Adif(3,2,1);
        cout << "Value: " << soid1(0.1) << endl;
        cout << "(val, deriv): " << soid2(Adif(0.1)) << endl;

Motivation

A function of more than one variable was required for a function which represents the sky brightness. Adjustable parameters were required for non-linear least squares fitting.

Template Type Argument Requirements (T)

To Do

Definition at line 200 of file Function.h.


Member Typedef Documentation

template<class T, class U = T>
typedef FunctionTraits<T>::ArgType casa::Function< T, U >::ArgType

Definition at line 206 of file Function.h.

template<class T, class U = T>
typedef const ArgType* casa::Function< T, U >::FunctionArg

Constructor & Destructor Documentation

template<class T, class U = T>
casa::Function< T, U >::Function ( ) [inline]

Constructors.

Definition at line 212 of file Function.h.

template<class T, class U = T>
casa::Function< T, U >::Function ( const uInt  n) [inline, explicit]

Definition at line 213 of file Function.h.

template<class T, class U = T>
casa::Function< T, U >::Function ( const Vector< T > &  in) [inline, explicit]

Definition at line 215 of file Function.h.

template<class T, class U = T>
casa::Function< T, U >::Function ( const FunctionParam< T > &  other) [inline]

Definition at line 217 of file Function.h.

template<class T, class U = T>
template<class W , class X >
casa::Function< T, U >::Function ( const Function< W, X > &  other) [inline]

Definition at line 220 of file Function.h.

template<class T, class U = T>
casa::Function< T, U >::Function ( const Function< T, U > &  other) [inline]

Definition at line 222 of file Function.h.

template<class T, class U = T>
virtual casa::Function< T, U >::~Function ( ) [inline, virtual]

Destructor.

Definition at line 233 of file Function.h.


Member Function Documentation

template<class T, class U = T>
const Vector<ArgType>& casa::Function< T, U >::argp ( ) const [inline]

Get arg_p and parset_p.

Necessary for reasons of protection in the copying of non-conforming Functions.

Definition at line 286 of file Function.h.

template<class T, class U = T>
virtual Function<T,U>* casa::Function< T, U >::clone ( ) const [pure virtual]

Return a copy of this object from the heap.

The caller is responsible for deleting this pointer. The cloneAD will return a clone with an AutoDef<T>; the cloneNonAD a clone with <T>. An AipsError will be thrown if the cloneAD() or cloneNonAD() is not implemented for a specific function.

Implemented in casa::Chebyshev< T >, casa::Gaussian2D_PS< AutoDiff< T > >, casa::Gaussian3D_PS< AutoDiff< T > >, casa::Gaussian1D_PS< AutoDiff< T > >, casa::Lorentzian1D_PS< AutoDiff< T > >, casa::SimButterworthBandpass< T >, casa::CompoundFunction_PS< AutoDiff< T > >, casa::Sinusoid1D_PS< AutoDiff< T > >, casa::GaussianND< T >, casa::Gaussian2D< T >, casa::Gaussian2D< Double >, casa::Interpolate1D< Domain, Range >, casa::Interpolate1D< Double, Double >, casa::Interpolate1D< Float, Array< Float > >, casa::CombiFunction_PS< AutoDiff< T > >, casa::MarshallableChebyshev< T >, casa::ConstantND_PS< AutoDiff< T > >, casa::HyperPlane_PS< AutoDiff< T > >, casa::PoissonFunction_PS< AutoDiff< T > >, casa::Polynomial_PS< AutoDiff< T > >, casa::Gaussian3D< T >, casa::EvenPolynomial_PS< AutoDiff< T > >, casa::OddPolynomial_PS< AutoDiff< T > >, casa::Gaussian1D< T >, casa::Lorentzian1D< T >, casa::MarshButterworthBandpass< T >, casa::CompiledFunction< T >, casa::Sinusoid1D< T >, casa::CompoundFunction< T >, casa::CompoundFunction< AutoDiff< Double > >, casa::CombiFunction< T >, casa::HyperPlane< T >, casa::ConstantND< T >, casa::FunctionWrapper< T >, casa::SincFunction< T >, casa::UnaryFunction< T >, casa::DiracDFunction< T >, casa::Polynomial< T >, casa::Polynomial< Double >, casa::Polynomial< AutoDiff< Float > >, casa::KaiserBFunction< T >, casa::PoissonFunction< T >, casa::EvenPolynomial< T >, casa::GNoiseFunction< T >, casa::OddPolynomial< T >, and casa::SPolynomial< T >.

template<class T, class U = T>
virtual Function<typename FunctionTraits<T>::DiffType>* casa::Function< T, U >::cloneAD ( ) const [virtual]
template<class T, class U = T>
virtual Function<typename FunctionTraits<T>::BaseType>* casa::Function< T, U >::cloneNonAD ( ) const [virtual]
template<class T, class U = T>
virtual U casa::Function< T, U >::eval ( FunctionArg  x) const [pure virtual]

Evaluate the function object.

Referenced by casa::Function< AutoDiffA< T >, AutoDiffA< T > >::operator()().

template<class T, class U = T>
virtual void casa::Function< T, U >::getMode ( RecordInterface mode) const [virtual]
template<class T, class U = T>
virtual Bool casa::Function< T, U >::hasMode ( ) const [virtual]

return True if the implementing function supports a mode.

The default implementation returns False.

Reimplemented in casa::ChebyshevParamModeImpl< T >, and casa::SimButterworthBandpass< T >.

template<class T, class U = T>
void casa::Function< T, U >::lockParam ( ) [inline]

Compiler cannot always find the correct 'const' version of parameter access.

In cases where this would lead to excessive overheads in moving parameters around (like in CompoundFunction) the parameter changing can be set to be locked, and no changes are assumed.

Definition at line 295 of file Function.h.

template<class T, class U = T>
Bool& casa::Function< T, U >::mask ( const uInt  n) [inline]

Manipulate the mask associated with the nth parameter (e.g.

to indicate whether the parameter is adjustable or nonadjustable). Note: no index check.

Definition at line 274 of file Function.h.

template<class T, class U = T>
const Bool& casa::Function< T, U >::mask ( const uInt  n) const [inline]

Definition at line 276 of file Function.h.

template<class T, class U = T>
virtual const String& casa::Function< T, U >::name ( ) const [virtual]

Specify the name associated with the function (default will be unknown)

Reimplemented in casa::ChebyshevParam< T >, casa::ChebyshevParam< AutoDiff< T > >, casa::ChebyshevParam< AutoDiffA< T > >, casa::Gaussian2DParam< T >, casa::Gaussian2DParam< Double >, casa::Gaussian2DParam< AutoDiff< T > >, casa::GaussianNDParam< T >, casa::Gaussian3DParam< Type >, casa::Gaussian3DParam< AutoDiff< T > >, casa::Gaussian3DParam< T >, casa::Interpolate1D< Domain, Range >, casa::Interpolate1D< Double, Double >, casa::Interpolate1D< Float, Array< Float > >, casa::CompoundParam< T >, casa::CompoundParam< AutoDiff< T > >, casa::CompoundParam< AutoDiff< Double > >, casa::Gaussian1DParam< T >, casa::Lorentzian1DParam< T >, casa::Gaussian1DParam< AutoDiff< T > >, casa::Lorentzian1DParam< AutoDiff< T > >, casa::CombiParam< T >, casa::CombiParam< AutoDiff< T > >, casa::HyperPlaneParam< T >, casa::Sinusoid1DParam< T >, casa::HyperPlaneParam< AutoDiff< T > >, casa::Sinusoid1DParam< AutoDiff< T > >, casa::ConstantNDParam< T >, casa::ConstantNDParam< AutoDiff< T > >, casa::SPolynomialParam< T >, casa::OddPolynomialParam< T >, casa::PolynomialParam< T >, casa::OddPolynomialParam< AutoDiff< T > >, casa::PolynomialParam< Double >, casa::PolynomialParam< AutoDiff< T > >, casa::PolynomialParam< AutoDiff< Float > >, casa::EvenPolynomialParam< T >, casa::EvenPolynomialParam< AutoDiff< T > >, casa::CompiledParam< T >, casa::SincParam< T >, casa::UnaryParam< T >, casa::DiracDParam< T >, casa::PoissonParam< T >, casa::PoissonParam< AutoDiff< T > >, casa::KaiserBParam< T >, casa::GNoiseParam< T >, and casa::WrapperParam< T >.

template<class T, class U = T>
virtual uInt casa::Function< T, U >::ndim ( ) const [pure virtual]
template<class T, class U = T>
uInt casa::Function< T, U >::nparameters ( ) const [inline]

Returns the number of parameters.

Definition at line 238 of file Function.h.

Referenced by casa::GenericL2Fit< DComplex >::setConstraint().

template<class T, class U = T>
virtual U casa::Function< T, U >::operator() ( ) const [inline, virtual]

Evaluate this function object at xor at x, y.

The length of x must be greater than or equal to ndim().

Definition at line 254 of file Function.h.

template<class T, class U = T>
virtual U casa::Function< T, U >::operator() ( const ArgType x) const [inline, virtual]

Definition at line 256 of file Function.h.

template<class T, class U = T>
virtual U casa::Function< T, U >::operator() ( const Vector< ArgType > &  x) const [virtual]
template<class T, class U = T>
virtual U casa::Function< T, U >::operator() ( FunctionArg  x) const [inline, virtual]

Definition at line 259 of file Function.h.

template<class T, class U = T>
virtual U casa::Function< T, U >::operator() ( const ArgType x,
const ArgType y 
) const [virtual]
template<class T, class U = T>
virtual U casa::Function< T, U >::operator() ( const ArgType x,
const ArgType y,
const ArgType z 
) const [virtual]
template<class T, class U = T>
T& casa::Function< T, U >::operator[] ( const uInt  n) [inline]

Manipulate the nth parameter (0-based) with no index check.

Definition at line 246 of file Function.h.

template<class T, class U = T>
const T& casa::Function< T, U >::operator[] ( const uInt  n) const [inline]

Definition at line 248 of file Function.h.

template<class T, class U = T>
const FunctionParam<T>& casa::Function< T, U >::parameters ( ) const [inline]

Return the parameter interface.

Definition at line 280 of file Function.h.

template<class T, class U = T>
FunctionParam<T>& casa::Function< T, U >::parameters ( ) [inline]

Definition at line 281 of file Function.h.

template<class T, class U = T>
Bool casa::Function< T, U >::parsetp ( ) const [inline]

Definition at line 287 of file Function.h.

template<class T, class U = T>
ostream& casa::Function< T, U >::print ( ostream &  os) const [inline]

Print the function (i.e.

the parameters)

Definition at line 323 of file Function.h.

template<class T, class U = T>
virtual void casa::Function< T, U >::setMode ( const RecordInterface mode) [virtual]

get/set the function mode.

These provide an interface to function-specific configuration or state that controls how the function calculates its values but otherwise does not qualify as a parameter. Some part of the state, for example, might have a type different from that of T. The state is passed as fields of a record, mode--the names, types and values of which are specific to the implementing function and should be documented in the implementing class. It is recommended that all possible inputs passed to this function via setMode() be considered optional such that if the record omits a legal field, that part of the state is left unchanged. Fields not recognized by the implementing class should be ignored. An exception should be thrown if a recognized field contains illegal data. The default implementations for both getMode() and setMode() ignore the input record.

Reimplemented in casa::ChebyshevParamModeImpl_PSA< AutoDiffA< T > >, casa::ChebyshevParamModeImpl_PS< AutoDiff< T > >, casa::ChebyshevParamModeImpl< T >, and casa::SimButterworthBandpass< T >.

template<class T, class U = T>
void casa::Function< T, U >::unlockParam ( ) [inline]

Definition at line 296 of file Function.h.


Member Data Documentation

template<class T, class U = T>
Vector<ArgType> casa::Function< T, U >::arg_p [mutable, protected]

Aid for non-contiguous argument storage.

Definition at line 342 of file Function.h.

Referenced by casa::Function< AutoDiffA< T >, AutoDiffA< T > >::argp().

template<class T, class U = T>
Bool casa::Function< T, U >::locked_p [mutable, protected]
template<class T, class U = T>
FunctionParam<T> casa::Function< T, U >::param_p [protected]
template<class T, class U = T>
Bool casa::Function< T, U >::parset_p [mutable, protected]

The documentation for this class was generated from the following file: