casacore
|
#include <FunctionWrapper.h>
Public Member Functions | |
FunctionWrapper () | |
Default constructor, to enable arrays. More... | |
FunctionWrapper (T(*f)()) | |
A function with no parameters and no arguments. More... | |
FunctionWrapper (T(*f)(const T &), const Bool isPar) | |
A function with parameter and no arguments (Note value of isPar irrelevant) More... | |
FunctionWrapper (T(*f)(const Vector< T > &), const Bool isPar) | |
A function with parameters and no arguments. More... | |
FunctionWrapper (T(*f)(const T &)) | |
Construct a 1-dimensional function with no parameters. More... | |
FunctionWrapper (T(*f)(const T &, const T &), const T &par) | |
Construct a 1-dimensional function with parameter. More... | |
FunctionWrapper (T(*f)(const T &, const Vector< T > &), const Vector< T > &par) | |
Construct a 1-dimensional function with parameters. More... | |
FunctionWrapper (T(*f)(const Vector< T > &), const Int dim=1) | |
Construct an n-dimensional function with no parameters. More... | |
FunctionWrapper (T(*f)(const Vector< T > &, const T &), const T &par, const uInt dim=1) | |
Construct an n-dimensional function with parameter. More... | |
FunctionWrapper (T(*f)(const Vector< T > &, const Vector< T > &), const Vector< T > &par, const uInt dim=1) | |
Construct an n-dimensional function with parameters. More... | |
FunctionWrapper (const FunctionWrapper< T > &other) | |
Copy constructor (reference semantics) More... | |
FunctionWrapper< T > & | operator= (const FunctionWrapper< T > &other) |
Copy assignment (reference semantics) More... | |
virtual | ~FunctionWrapper () |
Destructor. More... | |
virtual T | eval (typename Function< T >::FunctionArg x) const |
Evaluate the function at x . More... | |
virtual uInt | ndim () const |
Get the dimensionality. More... | |
virtual Function< T > * | clone () const |
Return a copy of this object from the heap. More... | |
Public Member Functions inherited from casacore::WrapperParam< T > | |
WrapperParam () | |
Construct with the given parameters. More... | |
WrapperParam (const T &par) | |
WrapperParam (const Vector< T > &par) | |
WrapperParam (const WrapperParam< T > &other) | |
Copy constructor (deep copy) More... | |
WrapperParam< T > & | operator= (const WrapperParam< T > &other) |
Copy assignment (deep copy) More... | |
virtual | ~WrapperParam () |
Destructor. More... | |
virtual const String & | name () const |
Give name of function. More... | |
Public Member Functions inherited from casacore::Function< T, U > | |
Function () | |
Constructors. More... | |
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) | |
virtual | ~Function () |
Destructor. More... | |
uInt | nparameters () const |
Returns the number of parameters. More... | |
virtual U | eval (FunctionArg x) const =0 |
Evaluate the function object. More... | |
T & | operator[] (const uInt n) |
Manipulate the nth parameter (0-based) with no index check. More... | |
const T & | operator[] (const uInt n) const |
virtual U | operator() () const |
Evaluate this function object at x or at x, y . More... | |
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 |
Bool & | mask (const uInt n) |
Manipulate the mask associated with the nth parameter (e.g. More... | |
const Bool & | mask (const uInt n) const |
const FunctionParam< T > & | parameters () const |
Return the parameter interface. More... | |
FunctionParam< T > & | parameters () |
const Vector< ArgType > & | argp () const |
Get arg_p and parset_p . More... | |
Bool | parsetp () const |
void | lockParam () |
Compiler cannot always find the correct 'const' version of parameter access. More... | |
void | unlockParam () |
virtual void | setMode (const RecordInterface &mode) |
get/set the function mode. More... | |
virtual void | getMode (RecordInterface &mode) const |
virtual Bool | hasMode () const |
return True if the implementing function supports a mode. More... | |
ostream & | print (ostream &os) const |
Print the function (i.e. More... | |
virtual Function< typename FunctionTraits< T >::DiffType > * | cloneAD () const |
virtual Function< typename FunctionTraits< T >::BaseType > * | cloneNonAD () const |
Public Member Functions inherited from casacore::Functional< FunctionTraits< T >::ArgType, T > | |
virtual | ~Functional () |
Destructor. More... | |
virtual T | operator() (const FunctionTraits< T >::ArgType &x) const=0 |
Map a Domain x into a Range y value. More... | |
Public Member Functions inherited from casacore::Functional< Vector< FunctionTraits< T >::ArgType >, T > | |
virtual | ~Functional () |
Destructor. More... | |
virtual T | operator() (const Vector< FunctionTraits< T >::ArgType > &x) const=0 |
Map a Domain x into a Range y value. More... | |
Protected Attributes | |
CountedPtr< WrapperBase< T > > | doit_p |
The function aid object. More... | |
Protected Attributes inherited from casacore::Function< T, U > | |
FunctionParam< T > | param_p |
The parameters and masks. More... | |
Vector< ArgType > | arg_p |
Aid for non-contiguous argument storage. More... | |
Bool | parset_p |
Indicate parameter written. More... | |
Bool | locked_p |
Indicate that parameters are expected to be locked from changing. More... | |
Additional Inherited Members | |
Public Types inherited from casacore::Function< T, U > | |
typedef FunctionTraits< T >::ArgType | ArgType |
typedef const ArgType * | FunctionArg |
Construct nD function objects from C++ functions
Public interface
This class is provided so that user can quickly construct a function object from a C++ function pointer without having to write a function class. The constructor constructs a function object from a function pointer, and an optional parameter list. Parameters are necessary if the function has to be used in a functional fitting process (see GenericL2Fit).
The general function signature is f(x;p)
, where x
represents the arguments, and p
the parameters. The allowed signatures of the function include all combinations of arguments and parameters, and are:
f()
no arguments e.g. random number or constant f(x)
1-dimensional, e.g. sin(x)
f(Vectorx)
n-dimensional, e.g. sin(x+2y)
Definition at line 85 of file FunctionWrapper.h.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | ) |
Default constructor, to enable arrays.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)() | f | ) |
A function with no parameters and no arguments.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const T &) | f, |
const Bool | isPar | ||
) |
A function with parameter and no arguments (Note value of isPar irrelevant)
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const Vector< T > &) | f, |
const Bool | isPar | ||
) |
A function with parameters and no arguments.
(Note value of isPar irrelevant)
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const T &) | f | ) |
Construct a 1-dimensional function with no parameters.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const T &, const T &) | f, |
const T & | par | ||
) |
Construct a 1-dimensional function with parameter.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const T &, const Vector< T > &) | f, |
const Vector< T > & | par | ||
) |
Construct a 1-dimensional function with parameters.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const Vector< T > &) | f, |
const Int | dim = 1 |
||
) |
Construct an n-dimensional function with no parameters.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const Vector< T > &, const T &) | f, |
const T & | par, | ||
const uInt | dim = 1 |
||
) |
Construct an n-dimensional function with parameter.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | T(*)(const Vector< T > &, const Vector< T > &) | f, |
const Vector< T > & | par, | ||
const uInt | dim = 1 |
||
) |
Construct an n-dimensional function with parameters.
casacore::FunctionWrapper< T >::FunctionWrapper | ( | const FunctionWrapper< T > & | other | ) |
Copy constructor (reference semantics)
|
inlinevirtual |
Destructor.
Definition at line 122 of file FunctionWrapper.h.
|
inlinevirtual |
Return a copy of this object from the heap.
The caller is responsible for deleting this pointer.
Implements casacore::Function< T, U >.
Definition at line 136 of file FunctionWrapper.h.
|
virtual |
Evaluate the function at x
.
|
virtual |
Get the dimensionality.
Implements casacore::Function< T, U >.
FunctionWrapper<T>& casacore::FunctionWrapper< T >::operator= | ( | const FunctionWrapper< T > & | other | ) |
Copy assignment (reference semantics)
|
protected |
The function aid object.
Definition at line 143 of file FunctionWrapper.h.