casa
$Rev:20696$
|
A one dimensional odd polynomial class. More...
#include <EvenPolynomial.h>
Public Member Functions | |
EvenPolynomial () | |
Constructs a zeroth order polynomial, with a coeficcient of 0.0. | |
EvenPolynomial (uInt order) | |
Makes a polynomial of the given order, with all coeficcients set to zero. | |
EvenPolynomial (const EvenPolynomial< T > &other) | |
Copy constructor/assignment (deep copy) | |
template<class W > | |
EvenPolynomial (const EvenPolynomial< W > &other) | |
EvenPolynomial< T > & | operator= (const EvenPolynomial< T > &other) |
virtual | ~EvenPolynomial () |
Destructor. | |
virtual T | eval (typename Function1D< T >::FunctionArg x) const |
Evaluate the polynomial at x . | |
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 one dimensional odd polynomial class.
An EvenPolynomial<T> contains a set of coefficients; its fundamental operation is evaluating itself at some "x". The number of coefficients is the order of the polynomial divided by two, plus one, so is the number of available parameters.
EvenPolynomial<Float> pf(3); // Second order polynomial - coeffs 0 by default pf.setCoefficient(0, 1.0); pf[1] = 2.0; // 2x^2 + 1x^0 pf(2); // == 8
Definition at line 84 of file EvenPolynomial.h.
casa::EvenPolynomial< T >::EvenPolynomial | ( | ) | [inline] |
Constructs a zeroth order polynomial, with a coeficcient of 0.0.
Definition at line 91 of file EvenPolynomial.h.
casa::EvenPolynomial< T >::EvenPolynomial | ( | uInt | order | ) | [inline, explicit] |
Makes a polynomial of the given order, with all coeficcients set to zero.
Definition at line 94 of file EvenPolynomial.h.
casa::EvenPolynomial< T >::EvenPolynomial | ( | const EvenPolynomial< T > & | other | ) | [inline] |
Copy constructor/assignment (deep copy)
Definition at line 97 of file EvenPolynomial.h.
casa::EvenPolynomial< T >::EvenPolynomial | ( | const EvenPolynomial< W > & | other | ) | [inline] |
Definition at line 100 of file EvenPolynomial.h.
virtual casa::EvenPolynomial< T >::~EvenPolynomial | ( | ) | [inline, virtual] |
Destructor.
Definition at line 107 of file EvenPolynomial.h.
virtual Function<T>* casa::EvenPolynomial< 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, T >.
Definition at line 117 of file EvenPolynomial.h.
virtual Function<typename FunctionTraits<T>::DiffType>* casa::EvenPolynomial< T >::cloneAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T, T >.
Definition at line 118 of file EvenPolynomial.h.
virtual Function<typename FunctionTraits<T>::BaseType>* casa::EvenPolynomial< T >::cloneNonAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T, T >.
Definition at line 120 of file EvenPolynomial.h.
virtual T casa::EvenPolynomial< T >::eval | ( | typename Function1D< T >::FunctionArg | x | ) | const [virtual] |
Evaluate the polynomial at x
.
EvenPolynomial<T>& casa::EvenPolynomial< T >::operator= | ( | const EvenPolynomial< T > & | other | ) | [inline] |
Definition at line 102 of file EvenPolynomial.h.