- HEIGHT = 0
- CENTER
- WIDTH
- KBPAR
Copy constructor (deep copy)
Copy assignment (deep copy)
Destructor
Prerequisite
Etymology
A Kaiser-Bessel function
Synopsis
A Kaiser-Bessel is described by a height, a center, a width
(halfwidth) and a parameter.
The parameters are enumerated by HEIGHT, CENTER, WIDTH, KBPAR. They have
default values of (1, 0, 1, 2.5).
Example
KaiserBFunction<Double> sf;
sf(0); // = 1.0
Template Type Argument Requirements (T)
Thrown Exceptions
Member Description
enum
Parameter numbers
KaiserBParam()
Constructs the KaiserB, Defaults:
height=1, center=0, width=1, kbpar=2.5.
explicit KaiserBParam(const T &kbpar)
Could not use default arguments
that worked both with gcc and IRIX
KaiserBParam(const KaiserBParam<T> &other)
KaiserBParam<T> &operator=(const KaiserBParam<T> &other)
virtual ~KaiserBParam()
virtual uInt ndim() const