LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+f5613e8b4f,g1470d8bcf6+190ad2ba91,g14a832a312+311607e4ab,g2079a07aa2+86d27d4dc4,g2305ad1205+a8e3196225,g295015adf3+b67ee847e5,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+a761f810f3,g487adcacf7+17c8fdbcbd,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+65b5bd823e,g5a732f18d5+53520f316c,g64a986408d+f5613e8b4f,g6c1bc301e9+51106c2951,g858d7b2824+f5613e8b4f,g8a8a8dda67+585e252eca,g99cad8db69+6729933424,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e9bba80f27,gc120e1dc64+eee469a5e5,gc28159a63d+0e5473021a,gcf0d15dbbd+a761f810f3,gdaeeff99f8+f9a426f77a,ge6526c86ff+d4c1d4bfef,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf1cff7945b+f5613e8b4f,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
lsst::geom::polynomials::RecurrenceBasis1d< Recurrence > Class Template Reference

A basis for 1-d series expansions defined by a recurrence relation. More...

#include <RecurrenceBasis1d.h>

Public Types

using Function = Function1d<RecurrenceBasis1d>
 A Function1d object that uses this basis.
 
using Scaled = ScaledBasis1d<RecurrenceBasis1d>
 The type returned by scale().
 

Public Member Functions

 RecurrenceBasis1d (std::size_t order) noexcept
 Construct a basis with the given order (inclusive).
 
 RecurrenceBasis1d (RecurrenceBasis1d const &)=default
 Default copy constructor.
 
 RecurrenceBasis1d (RecurrenceBasis1d &&)=default
 Default move constructor.
 
RecurrenceBasis1doperator= (RecurrenceBasis1d const &)=default
 Default copy assignment.
 
RecurrenceBasis1doperator= (RecurrenceBasis1d &&)=default
 Default move assignment.
 
std::size_t getOrder () const noexcept
 Return the order of the basis.
 
std::size_t size () const noexcept
 Return the number of elements in the basis.
 
Scaled scaled (Scaling1d const &scaling) const noexcept
 Return a scaled basis with the same order and recurrence.
 
template<typename Vector >
double sumWith (double x, Vector const &coefficients, SumMode mode=SumMode::FAST) const
 Evaluate a basis expansion with the given coefficients.
 
template<typename Vector >
void fill (double x, Vector &&basis) const
 Evaluate the basis at a given point.
 

Detailed Description

template<typename Recurrence>
class lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >

A basis for 1-d series expansions defined by a recurrence relation.

The recurrence relations utilized by RecurrenceBasis1d must have the following form:

\[ B_{n+1}(x) = R(x, n, B_n(x), B_{n-1}(x)) \]

with explicit expressions for \(B_0(x)\) and \(B_1(x)\) also given. This includes all special polynomials (e.g. Chebyshev, Legendre, Hermite, Laguerre) and products of special polynomials with their natural weight functions (e.g. Gauss-Hermite functions). The template parameter must be a model of the Recurrence concept.

RecurrenceBasis1d is a model of the Basis1d concept.

Definition at line 85 of file RecurrenceBasis1d.h.

Member Typedef Documentation

◆ Function

A Function1d object that uses this basis.

Definition at line 89 of file RecurrenceBasis1d.h.

◆ Scaled

The type returned by scale().

Definition at line 92 of file RecurrenceBasis1d.h.

Constructor & Destructor Documentation

◆ RecurrenceBasis1d() [1/3]

template<typename Recurrence >
lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::RecurrenceBasis1d ( std::size_t order)
inlineexplicitnoexcept

Construct a basis with the given order (inclusive).

Definition at line 95 of file RecurrenceBasis1d.h.

95 :
96 _order(order)
97 {}
table::Key< int > order

◆ RecurrenceBasis1d() [2/3]

template<typename Recurrence >
lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::RecurrenceBasis1d ( RecurrenceBasis1d< Recurrence > const & )
default

Default copy constructor.

◆ RecurrenceBasis1d() [3/3]

template<typename Recurrence >
lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::RecurrenceBasis1d ( RecurrenceBasis1d< Recurrence > && )
default

Default move constructor.

Member Function Documentation

◆ fill()

template<typename Recurrence >
template<typename Vector >
void lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::fill ( double x,
Vector && basis ) const
inline

Evaluate the basis at a given point.

Parameters
[in]xPoint at which to evaluate the basis functions.
[out]basisOutput vector. See Basis1d::fill more information.
Exception Safety
Does not throw unless coefficients[n] does, and provides basic exception safety if it does.

Definition at line 187 of file RecurrenceBasis1d.h.

187 {
188 std::forward<Vector>(basis)[0] = Recurrence::getB0(x);
189 if (_order > 0u) {
190 std::forward<Vector>(basis)[1] = Recurrence::getB1(x);
191 for (std::size_t n = 2; n <= _order; ++n) {
192 std::forward<Vector>(basis)[n] = Recurrence::next(
193 x, n,
194 std::forward<Vector>(basis)[n - 1],
195 std::forward<Vector>(basis)[n - 2]
196 );
197 }
198 }
199 }
table::Key< table::Array< double > > basis
Definition PsfexPsf.cc:361
static double getB1(double x)
Return the first element of the basis, .
static double next(double x, std::size_t n, double current, double previous)
Return the next element in the recurrence.
static double getB0(double x)
Return the zeroth element of the basis, .

◆ getOrder()

template<typename Recurrence >
std::size_t lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::getOrder ( ) const
inlinenoexcept

Return the order of the basis.

Definition at line 112 of file RecurrenceBasis1d.h.

112{ return _order; }

◆ operator=() [1/2]

Default move assignment.

◆ operator=() [2/2]

Default copy assignment.

◆ scaled()

template<typename Recurrence >
Scaled lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::scaled ( Scaling1d const & scaling) const
inlinenoexcept

Return a scaled basis with the same order and recurrence.

The scaled basis will transform all points by the given scaling before evaluating the basis functions in the same way as this.

Definition at line 123 of file RecurrenceBasis1d.h.

123 {
124 return Scaled(*this, scaling);
125 }
table::Key< double > scaling
ScaledBasis1d< RecurrenceBasis1d > Scaled
The type returned by scale().

◆ size()

template<typename Recurrence >
std::size_t lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::size ( ) const
inlinenoexcept

Return the number of elements in the basis.

Definition at line 115 of file RecurrenceBasis1d.h.

115{ return _order + 1; }

◆ sumWith()

template<typename Recurrence >
template<typename Vector >
double lsst::geom::polynomials::RecurrenceBasis1d< Recurrence >::sumWith ( double x,
Vector const & coefficients,
SumMode mode = SumMode::FAST ) const
inline

Evaluate a basis expansion with the given coefficients.

If the basis elements are \(B_n(x)\) and the given coefficients are a vector \(a_n\), this computes

\[ \sum_{n = 0}^{n \le N} a_n B_n(x) \]

Parameters
[in]xPoint at which to evaluate the expansion.
[in]coefficientsCoefficients vector. See Basis1d::sumWith for more information.
[in]modeEnum indicating the tradeoff to make between speed and numerical precision.
Exception Safety
Does not throw unless coefficients[n] does, and provides the same exception safety as it if it does.

Definition at line 146 of file RecurrenceBasis1d.h.

146 {
147 // This universal lambda lets us effectively template most of the
148 // implementation of this function on double vs. SafeSum<double>
149 // without having to define an external template.
150 auto accumulate = [x, coefficients, this](auto & sum) {
151 double previous = Recurrence::getB0(x);
152 if (_order > 0u) {
153 double current = Recurrence::getB1(x);
154 sum += coefficients[1]*current;
155 for (std::size_t n = 2; n <= _order; ++n) {
156 double next = Recurrence::next(x, n, current, previous);
157 sum += coefficients[n]*next;
158 previous = current;
159 current = next;
160 }
161 }
162 };
163 double result = 0.0;
164 if (mode == SumMode::FAST) {
165 double z = Recurrence::getB0(x)*coefficients[0];
166 accumulate(z);
167 result = z;
168 } else {
169 SafeSum<double> z(Recurrence::getB0(x)*coefficients[0]);
170 accumulate(z);
171 result = static_cast<double>(z);
172 }
173 return result;
174 }
py::object result
Definition _schema.cc:429
ndarray::Array< double const, 2, 2 > coefficients
double z
Definition Match.cc:44
T accumulate(T... args)
@ FAST
Summation using regular floating-point addition.
T next(T... args)

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