casa
$Rev:20696$
|
A constant function. More...
#include <ConstantND.h>
Public Member Functions | |
ConstantND (const uInt m=0) | |
Construct a constant in an a space of dimensionality m . | |
ConstantND (const ConstantND< T > &other) | |
Copy constructor/assignment (deep copy) | |
template<class W > | |
ConstantND (const ConstantND< W > &other) | |
ConstantND< T > & | operator= (const ConstantND< T > &other) |
virtual | ~ConstantND () |
Destructor. | |
virtual T | eval (typename Function< T >::FunctionArg x) const |
Evaluate the hyper plane function at (x0,x1,..,xm-1). | |
virtual Function< T > * | clone () const |
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 |
A constant function.
Public interface
This class represents a constant function in a space of arbitrary dimension f(x0,x1,..,xm-1) = constant where xi are independent arguments and m is the number of dimensions of the space.
Since the Constant
is a Function
, the derivatives can be obtained as well (and are in fact 0 of course).
The parameter interface (see FunctionParam class), is used to provide an interface to the Fitting classes.
This class is in general used implicitly by the Constant
class only.
// form the constant function in 4-D space Constant<Double> constant(4); // 4-dim hyperplane constant.parameters()[0] = 22; // Evaluate at x0=5, x3=7 Vector<Double> x(4); x=0; x[0]=5; x[3]=7; cout << "constant value: " << constant(x) << endl; constant value: 22
This class was created because HyperPlane does not support a constant offset and modifying that class really required an interface change (ie that the constant offset be at the beginning of the parameter vector and that the parameter vector increase by one) so rather than breaking any code that already used HyperPlane I simply made a trivial Constant class.
Definition at line 108 of file ConstantND.h.
casa::ConstantND< T >::ConstantND | ( | const uInt | m = 0 | ) | [inline, explicit] |
Construct a constant in an a space of dimensionality m
.
By default, the constant value is initialised to zero, and m=0
Definition at line 114 of file ConstantND.h.
casa::ConstantND< T >::ConstantND | ( | const ConstantND< T > & | other | ) | [inline] |
Copy constructor/assignment (deep copy)
Definition at line 117 of file ConstantND.h.
casa::ConstantND< T >::ConstantND | ( | const ConstantND< W > & | other | ) | [inline] |
Definition at line 119 of file ConstantND.h.
virtual casa::ConstantND< T >::~ConstantND | ( | ) | [inline, virtual] |
Destructor.
Definition at line 125 of file ConstantND.h.
virtual Function<T>* casa::ConstantND< T >::clone | ( | ) | const [inline, virtual] |
Return a copy of this object from the heap.
The caller is responsible for deleting the pointer.
Implements casa::Function< T >.
Definition at line 135 of file ConstantND.h.
virtual Function<typename FunctionTraits<T>::DiffType>* casa::ConstantND< T >::cloneAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T >.
Definition at line 136 of file ConstantND.h.
virtual Function<typename FunctionTraits<T>::BaseType>* casa::ConstantND< T >::cloneNonAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T >.
Definition at line 138 of file ConstantND.h.
virtual T casa::ConstantND< T >::eval | ( | typename Function< T >::FunctionArg | x | ) | const [virtual] |
Evaluate the hyper plane function at (x0,x1,..,xm-1).
ConstantND<T>& casa::ConstantND< T >::operator= | ( | const ConstantND< T > & | other | ) | [inline] |
Definition at line 120 of file ConstantND.h.