casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Member Functions
casa::EvenPolynomial< T > Class Template Reference

A one dimensional odd polynomial class. More...

#include <EvenPolynomial.h>

Inheritance diagram for casa::EvenPolynomial< T >:
casa::EvenPolynomialParam< T > casa::Function1D< T > casa::Function< T, T > casa::Functional< FunctionTraits< T >::ArgType, T > casa::Functional< Vector< FunctionTraits< T >::ArgType >, T >

List of all members.

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

Detailed Description

template<class T>
class casa::EvenPolynomial< T >

A one dimensional odd polynomial class.

Review Status

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

Prerequisite

Synopsis

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.

Example

     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

Template Type Argument Requirements (T)

Thrown Exceptions

To Do

Definition at line 84 of file EvenPolynomial.h.


Constructor & Destructor Documentation

template<class T>
casa::EvenPolynomial< T >::EvenPolynomial ( ) [inline]

Constructs a zeroth order polynomial, with a coeficcient of 0.0.

Definition at line 91 of file EvenPolynomial.h.

template<class T>
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.

template<class T>
casa::EvenPolynomial< T >::EvenPolynomial ( const EvenPolynomial< T > &  other) [inline]

Copy constructor/assignment (deep copy)

Definition at line 97 of file EvenPolynomial.h.

template<class T>
template<class W >
casa::EvenPolynomial< T >::EvenPolynomial ( const EvenPolynomial< W > &  other) [inline]

Definition at line 100 of file EvenPolynomial.h.

template<class T>
virtual casa::EvenPolynomial< T >::~EvenPolynomial ( ) [inline, virtual]

Destructor.

Definition at line 107 of file EvenPolynomial.h.


Member Function Documentation

template<class T>
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.

template<class T>
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.

template<class T>
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.

template<class T>
virtual T casa::EvenPolynomial< T >::eval ( typename Function1D< T >::FunctionArg  x) const [virtual]

Evaluate the polynomial at x.

template<class T>
EvenPolynomial<T>& casa::EvenPolynomial< T >::operator= ( const EvenPolynomial< T > &  other) [inline]

Definition at line 102 of file EvenPolynomial.h.


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