LSST Applications g0265f82a02+c6dfa2ddaf,g1162b98a3f+ffe7eabc7e,g2079a07aa2+1b2e822518,g2bbee38e9b+c6dfa2ddaf,g337abbeb29+c6dfa2ddaf,g36da64cc00+ea84795170,g3ddfee87b4+955a963fd8,g50ff169b8f+2eb0e556e8,g52b1c1532d+90ebb246c7,g555ede804d+955a963fd8,g591dd9f2cf+bac198a2cb,g5ec818987f+420292cfeb,g858d7b2824+d6c9a0a3b8,g876c692160+aabc49a3c3,g8a8a8dda67+90ebb246c7,g8cdfe0ae6a+4fd9e222a8,g99cad8db69+e6cd765486,g9ddcbc5298+a1346535a5,ga1e77700b3+df8f93165b,ga8c6da7877+acd47f83f4,gae46bcf261+c6dfa2ddaf,gb0e22166c9+8634eb87fb,gb3f2274832+12c8382528,gba4ed39666+1ac82b564f,gbb8dafda3b+0574160a1f,gbeb006f7da+dea2fbb49f,gc28159a63d+c6dfa2ddaf,gc86a011abf+d6c9a0a3b8,gcf0d15dbbd+955a963fd8,gdaeeff99f8+1cafcb7cd4,gdc0c513512+d6c9a0a3b8,ge79ae78c31+c6dfa2ddaf,geb67518f79+ba1859f325,gee10cc3b42+90ebb246c7,gf1cff7945b+d6c9a0a3b8,w.2024.13
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
lsst::geom::polynomials::ScaledBasis1d< Nested > Class Template Reference

A 1-d basis that transforms all input points before evaluating nested basis. More...

#include <ScaledBasis1d.h>

Public Types

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

Public Member Functions

 ScaledBasis1d (Nested const &nested, Scaling1d const &scaling)
 Construct a scaled basis from a nested basis and a scaling transform.
 
 ScaledBasis1d (std::size_t order, double min, double max)
 Construct a basis that remaps the given interval to [-1, 1] before evaluating the nested basis.
 
 ScaledBasis1d (ScaledBasis1d const &)=default
 Default copy constructor.
 
 ScaledBasis1d (ScaledBasis1d &&)=default
 Default move constructor.
 
ScaledBasis1doperator= (ScaledBasis1d const &)=default
 Default copy assignment.
 
ScaledBasis1doperator= (ScaledBasis1d &&)=default
 Default move assignment.
 
Nested const & getNested () const noexcept
 Return the nested basis.
 
Scaling1d const & getScaling () const noexcept
 Return the scaling transform.
 
std::size_t getOrder () const
 Return the order of the basis.
 
std::size_t size () const
 Return the number of elements in the basis.
 
Scaled scaled (Scaling1d const &first) const
 Return a further-scaled basis with the same order.
 
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 Nested>
class lsst::geom::polynomials::ScaledBasis1d< Nested >

A 1-d basis that transforms all input points before evaluating nested basis.

If the nested basis is defined by basis functions \(B_n(x)\), the scaled basis functions are \(B_n(S(x))\), where \(S(x)\) is the scaling transform.

Both the nested basis and ScaledBasis1d itself are models of the Basis1d concept.

Definition at line 44 of file ScaledBasis1d.h.

Member Typedef Documentation

◆ Function

template<typename Nested >
using lsst::geom::polynomials::ScaledBasis1d< Nested >::Function = Function1d<ScaledBasis1d>

A Function1d object that uses this basis.

Definition at line 48 of file ScaledBasis1d.h.

◆ Scaled

template<typename Nested >
using lsst::geom::polynomials::ScaledBasis1d< Nested >::Scaled = ScaledBasis1d<Nested>

The type returned by scale().

Definition at line 51 of file ScaledBasis1d.h.

Constructor & Destructor Documentation

◆ ScaledBasis1d() [1/4]

template<typename Nested >
lsst::geom::polynomials::ScaledBasis1d< Nested >::ScaledBasis1d ( Nested const & nested,
Scaling1d const & scaling )
inlineexplicit

Construct a scaled basis from a nested basis and a scaling transform.

Definition at line 54 of file ScaledBasis1d.h.

54 :
55 _nested(nested),
56 _scaling(scaling)
57 {}
table::Key< double > scaling
table::Key< int > nested

◆ ScaledBasis1d() [2/4]

template<typename Nested >
lsst::geom::polynomials::ScaledBasis1d< Nested >::ScaledBasis1d ( std::size_t order,
double min,
double max )
inline

Construct a basis that remaps the given interval to [-1, 1] before evaluating the nested basis.

Parameters
[in]orderMaximum order of the basis (inclusive).
[in]minMinimum point of the interval, mapped to -1.
[in]maxMaximum point of the interval, mapped to 1.

This constructor is particularly useful for Chebyshev polynomials, for which most of the special functions of the basis are only active when the domain is limited to [-1, 1].

This signature requires that Nested(order) be a valid constructor.

Definition at line 73 of file ScaledBasis1d.h.

73 :
74 _nested(order),
76 {}
int min
int max
Scaling1d makeUnitRangeScaling1d(double min, double max) noexcept
Return a Scaling1d that maps the interval [min, max] to [-1, 1].
Definition Scaling1d.h:120
table::Key< int > order

◆ ScaledBasis1d() [3/4]

template<typename Nested >
lsst::geom::polynomials::ScaledBasis1d< Nested >::ScaledBasis1d ( ScaledBasis1d< Nested > const & )
default

Default copy constructor.

◆ ScaledBasis1d() [4/4]

template<typename Nested >
lsst::geom::polynomials::ScaledBasis1d< Nested >::ScaledBasis1d ( ScaledBasis1d< Nested > && )
default

Default move constructor.

Member Function Documentation

◆ fill()

template<typename Nested >
template<typename Vector >
void lsst::geom::polynomials::ScaledBasis1d< Nested >::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 146 of file ScaledBasis1d.h.

146 {
147 return getNested().fill(getScaling().applyForward(x), std::forward<Vector>(basis));
148 }
Scaling1d const & getScaling() const noexcept
Return the scaling transform.
Nested const & getNested() const noexcept
Return the nested basis.
table::Key< table::Array< double > > basis
Definition PsfexPsf.cc:361

◆ getNested()

template<typename Nested >
Nested const & lsst::geom::polynomials::ScaledBasis1d< Nested >::getNested ( ) const
inlinenoexcept

Return the nested basis.

Definition at line 91 of file ScaledBasis1d.h.

91{ return _nested; }

◆ getOrder()

template<typename Nested >
std::size_t lsst::geom::polynomials::ScaledBasis1d< Nested >::getOrder ( ) const
inline

Return the order of the basis.

Definition at line 97 of file ScaledBasis1d.h.

97{ return getNested().getOrder(); }

◆ getScaling()

template<typename Nested >
Scaling1d const & lsst::geom::polynomials::ScaledBasis1d< Nested >::getScaling ( ) const
inlinenoexcept

Return the scaling transform.

Definition at line 94 of file ScaledBasis1d.h.

94{ return _scaling; }

◆ operator=() [1/2]

template<typename Nested >
ScaledBasis1d & lsst::geom::polynomials::ScaledBasis1d< Nested >::operator= ( ScaledBasis1d< Nested > && )
default

Default move assignment.

◆ operator=() [2/2]

template<typename Nested >
ScaledBasis1d & lsst::geom::polynomials::ScaledBasis1d< Nested >::operator= ( ScaledBasis1d< Nested > const & )
default

Default copy assignment.

◆ scaled()

template<typename Nested >
Scaled lsst::geom::polynomials::ScaledBasis1d< Nested >::scaled ( Scaling1d const & first) const
inline

Return a further-scaled basis with the same order.

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 108 of file ScaledBasis1d.h.

108 {
109 return getNested().scaled(first.then(getScaling()));
110 }

◆ size()

template<typename Nested >
std::size_t lsst::geom::polynomials::ScaledBasis1d< Nested >::size ( ) const
inline

Return the number of elements in the basis.

Definition at line 100 of file ScaledBasis1d.h.

100{ return getNested().size(); }

◆ sumWith()

template<typename Nested >
template<typename Vector >
double lsst::geom::polynomials::ScaledBasis1d< Nested >::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 131 of file ScaledBasis1d.h.

131 {
132 return getNested().sumWith(getScaling().applyForward(x), coefficients, mode);
133 }
ndarray::Array< double const, 2, 2 > coefficients

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