LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
|
Low-level polynomials (including special polynomials) in C++. More...
Namespaces | |
namespace | detail |
Classes | |
class | Basis1d |
A basis interface for 1-d series expansions. More... | |
class | Basis2d |
A basis interface for 2-d series expansions. More... | |
class | BinomialMatrix |
A class that computes binomial coefficients up to a certain power. More... | |
class | Chebyshev1Recurrence |
A Recurrence for Chebyshev polynomials of the first kind. More... | |
class | Function1d |
A 1-d function defined by a series expansion and its coefficients. More... | |
class | Function2d |
A 2-d function defined by a series expansion and its coefficients. More... | |
struct | Index2d |
A custom tuple that relates the indices of two 1-d functions for x and y to the flattened index for the 2-d function they form. More... | |
class | PackedBasis2d |
A Basis2d formed from the product of a Basis1d for each of x and y, truncated at the sum of their orders. More... | |
class | PackedBasisWorkspace2d |
A workspace object that can be used to avoid extra memory allocations in repeated calls to PackedBasis2d methods. More... | |
class | PackedIndexIterator |
An iterator for traversing "packed" triangular 2-d series expansions, in which two 1-d expansions are truncated according to the sum of their orders and all values for one order are stored before any values of the subsequent order. More... | |
class | PackedIndexRange |
A specialized iterator range class for PackedIndexIterator, providing size calculation, comparison, and range-based for support. More... | |
class | PolynomialRecurrence |
A Recurrence for standard polynomials. More... | |
struct | Recurrence |
A recurrence relation concept for RecurrenceBasis1d. More... | |
class | RecurrenceBasis1d |
A basis for 1-d series expansions defined by a recurrence relation. More... | |
class | SafeSum |
A numerically stable summation algorithm for floating-point numbers. More... | |
class | ScaledBasis1d |
A 1-d basis that transforms all input points before evaluating nested basis. More... | |
class | ScaledBasis2d |
A 2-d basis that transforms all input points before evaluating nested basis. More... | |
class | Scaling1d |
A 1-d affine transform that can be used to map one interval to another. More... | |
class | Scaling2d |
A 2-d separable affine transform that can be used to map one interval to another. More... | |
Enumerations | |
enum class | PackingOrder { YX , XY } |
Enum defining the packing orders used to order 2-d polynomial coefficients. More... | |
enum class | SumMode { FAST , SAFE } |
Enum used to control how to sum polynomial terms. More... | |
Functions | |
template<typename Basis > | |
Function1d< Basis > | makeFunction1d (Basis const &basis, Eigen::VectorXd const &coefficients) |
Create a Function1d of the appropriate type from a Basis1d and an Eigen object containing coefficients. More... | |
template<typename Basis , typename Iterator > | |
Function1d< Basis > | makeFunction1d (Basis const &basis, Iterator first, Iterator last) |
Create a Function1d of the appropriate type from a Basis1d and an iterator range to copy coefficients from. More... | |
template<typename Basis > | |
Function2d< Basis > | makeFunction2d (Basis const &basis, Eigen::VectorXd const &coefficients) |
Create a Function2d of the appropriate type from a Basis2d and an Eigen object containing coefficients. More... | |
template<typename Basis , typename Iterator > | |
Function2d< Basis > | makeFunction2d (Basis const &basis, Iterator first, Iterator last) |
Create a Function2d of the appropriate type from a Basis2d and an iterator range to copy coefficients from. More... | |
PolynomialFunction1d | simplified (ScaledPolynomialFunction1d const &f) |
Calculate the standard polynomial function that is equivalent to a scaled standard polynomial function. More... | |
template<PackingOrder packing> | |
PolynomialFunction2d< packing > | simplified (ScaledPolynomialFunction2d< packing > const &f) |
Calculate the standard polynomial function that is equivalent to a scaled standard polynomial function. More... | |
Scaling1d | makeUnitRangeScaling1d (double min, double max) noexcept |
Return a Scaling1d that maps the interval [min, max] to [-1, 1]. More... | |
Scaling2d | makeUnitRangeScaling2d (geom::Box2D const &box) |
Return a Scaling1d that maps the given box to [-1, 1]x[-1, 1]. More... | |
template PolynomialFunction2d< PackingOrder::XY > | simplified (ScaledPolynomialFunction2d< PackingOrder::XY > const &) |
template PolynomialFunction2d< PackingOrder::YX > | simplified (ScaledPolynomialFunction2d< PackingOrder::YX > const &) |
Low-level polynomials (including special polynomials) in C++.
The geom::polynomials library provides low-level classes for efficiently evaluating polynomial basis functions and expansions in C++. The classes here:
They are intended to be used as the building blocks of higher-level objects that are visible to Python users and persisted with our data products, such as afw::math::ChebyshevBoundedField and the afw::math::Function hierarchy.
At present, the library only includes support for 1-d and 2-d standard polynomials and Chebyshev polynomials of the first kind, but adding support for any other function defined by a recurrence relation (i.e. any other special polynomial) should be extremely easy (see RecurrenceBasis1d), and need not be done within the polynomials library itself.
For both 1-d and 2-d, the library contains the following kinds of objects:
The library also includes a few utility classes and functions:
A Basis1d for Chebyshev polynomials of the first kind.
Definition at line 48 of file Chebyshev1Basis1d.h.
using lsst::geom::polynomials::Chebyshev1Basis2d = typedef PackedBasis2d<Chebyshev1Basis1d, packing> |
A Basis2d for Chebyshev polynomials of the first kind, templated on packing order.
Definition at line 34 of file Chebyshev1Basis2d.h.
A Basis2d for Chebyshev polynomials of the first kind, ordered via PackingOrder::XY.
Definition at line 41 of file Chebyshev1Basis2d.h.
A Basis2d for Chebyshev polynomials of the first kind, ordered via PackingOrder::YX.
Definition at line 44 of file Chebyshev1Basis2d.h.
using lsst::geom::polynomials::Chebyshev1Function1d = typedef Function1d<Chebyshev1Basis1d> |
A Function1d for Chebyshev polynomials of the first kind.
Definition at line 31 of file Chebyshev1Function1d.h.
using lsst::geom::polynomials::Chebyshev1Function2d = typedef Function2d<Chebyshev1Basis2d<packing> > |
A Function2d for Chebyshev polynomials of the first kind, templated on packing order.
Definition at line 32 of file Chebyshev1Function2d.h.
using lsst::geom::polynomials::Chebyshev1Function2dXY = typedef Chebyshev1Function2d<PackingOrder::XY> |
A Function2d for Chebyshev polynomials of the first kind, ordered via PackingOrder::XY.
Definition at line 39 of file Chebyshev1Function2d.h.
using lsst::geom::polynomials::Chebyshev1Function2dYX = typedef Chebyshev1Function2d<PackingOrder::YX> |
A Function2d for Chebyshev polynomials of the first kind, ordered via PackingOrder::YX.
Definition at line 42 of file Chebyshev1Function2d.h.
A Basis1d for standard polynomials.
Definition at line 50 of file PolynomialBasis1d.h.
using lsst::geom::polynomials::PolynomialBasis2d = typedef PackedBasis2d<PolynomialBasis1d, packing> |
A Basis2d for standard polynomials, templated on packing order.
Definition at line 34 of file PolynomialBasis2d.h.
A Basis2d for standard polynomials, ordered via PackingOrder::XY.
Definition at line 41 of file PolynomialBasis2d.h.
A Basis2d for standard polynomials, ordered via PackingOrder::YX.
Definition at line 44 of file PolynomialBasis2d.h.
using lsst::geom::polynomials::PolynomialFunction1d = typedef Function1d<PolynomialBasis1d> |
A Function1d for standard polynomials.
Definition at line 31 of file PolynomialFunction1d.h.
using lsst::geom::polynomials::PolynomialFunction2d = typedef Function2d<PolynomialBasis2d<packing> > |
A Function2d for standard polynomials.
Definition at line 32 of file PolynomialFunction2d.h.
using lsst::geom::polynomials::PolynomialFunction2dXY = typedef PolynomialFunction2d<PackingOrder::XY> |
A Function2d for standard polynomials, ordered via PackingOrder::XY.
Definition at line 39 of file PolynomialFunction2d.h.
using lsst::geom::polynomials::PolynomialFunction2dYX = typedef PolynomialFunction2d<PackingOrder::YX> |
A Function2d for standard polynomials, ordered via PackingOrder::YX.
Definition at line 42 of file PolynomialFunction2d.h.
A Basis1d for scaled Chebyshev polynomials of the first kind.
Definition at line 51 of file Chebyshev1Basis1d.h.
using lsst::geom::polynomials::ScaledChebyshev1Basis2d = typedef ScaledBasis2d<Chebyshev1Basis2d<packing> > |
A Basis2d for scaled Chebyshev polynomials of the first kind, templated on packing order.
Definition at line 38 of file Chebyshev1Basis2d.h.
using lsst::geom::polynomials::ScaledChebyshev1Basis2dXY = typedef ScaledChebyshev1Basis2d<PackingOrder::XY> |
A Basis2d for scaled Chebyshev polynomials of the first kind, ordered via PackingOrder::XY.
Definition at line 47 of file Chebyshev1Basis2d.h.
using lsst::geom::polynomials::ScaledChebyshev1Basis2dYX = typedef ScaledChebyshev1Basis2d<PackingOrder::YX> |
A Basis2d for scaled Chebyshev polynomials of the first kind, ordered via PackingOrder::YX.
Definition at line 50 of file Chebyshev1Basis2d.h.
using lsst::geom::polynomials::ScaledChebyshev1Function1d = typedef Function1d<ScaledChebyshev1Basis1d> |
A Function1d for scaled Chebyshev polynomials of the first kind.
Definition at line 34 of file Chebyshev1Function1d.h.
using lsst::geom::polynomials::ScaledChebyshev1Function2d = typedef Function2d<ScaledChebyshev1Basis2d<packing> > |
A Function2d for scaled Chebyshev polynomials of the first kind, templated on packing order.
Definition at line 36 of file Chebyshev1Function2d.h.
using lsst::geom::polynomials::ScaledChebyshev1Function2dXY = typedef ScaledChebyshev1Function2d<PackingOrder::XY> |
A Function2d for scaled Chebyshev polynomials of the first kind, ordered via PackingOrder::XY.
Definition at line 45 of file Chebyshev1Function2d.h.
using lsst::geom::polynomials::ScaledChebyshev1Function2dYX = typedef ScaledChebyshev1Function2d<PackingOrder::YX> |
A Function2d for scaled Chebyshev polynomials of the first kind, ordered via PackingOrder::YX.
Definition at line 48 of file Chebyshev1Function2d.h.
A ScaledBasis1d for standard polynomials.
Definition at line 53 of file PolynomialBasis1d.h.
using lsst::geom::polynomials::ScaledPolynomialBasis2d = typedef ScaledBasis2d<PolynomialBasis2d<packing> > |
A Basis2d for scaled standard polynomials, templated on packing order.
Definition at line 38 of file PolynomialBasis2d.h.
using lsst::geom::polynomials::ScaledPolynomialBasis2dXY = typedef ScaledPolynomialBasis2d<PackingOrder::XY> |
A Basis2d for scaled standard polynomials, ordered via PackingOrder::XY.
Definition at line 47 of file PolynomialBasis2d.h.
using lsst::geom::polynomials::ScaledPolynomialBasis2dYX = typedef ScaledPolynomialBasis2d<PackingOrder::YX> |
A Basis2d for scaled standard polynomials, ordered via PackingOrder::YX.
Definition at line 50 of file PolynomialBasis2d.h.
using lsst::geom::polynomials::ScaledPolynomialFunction1d = typedef Function1d<ScaledPolynomialBasis1d> |
A Function1d for scaled standard polynomials.
Definition at line 34 of file PolynomialFunction1d.h.
using lsst::geom::polynomials::ScaledPolynomialFunction2d = typedef Function2d<ScaledPolynomialBasis2d<packing> > |
A Function2d for scaled standard polynomials.
Definition at line 36 of file PolynomialFunction2d.h.
using lsst::geom::polynomials::ScaledPolynomialFunction2dXY = typedef ScaledPolynomialFunction2d<PackingOrder::XY> |
A Function2d for scaled standard polynomials, ordered via PackingOrder::XY.
Definition at line 45 of file PolynomialFunction2d.h.
using lsst::geom::polynomials::ScaledPolynomialFunction2dYX = typedef ScaledPolynomialFunction2d<PackingOrder::YX> |
A Function2d for scaled standard polynomials, ordered via PackingOrder::YX.
Definition at line 48 of file PolynomialFunction2d.h.
|
strong |
Enum defining the packing orders used to order 2-d polynomial coefficients.
Definition at line 28 of file PackedIndex.h.
|
strong |
Enum used to control how to sum polynomial terms.
Enumerator | |
---|---|
FAST | Summation using regular floating-point addition. |
SAFE | Compensated summation using SafeSum. Involves ~4x as many floating point operations. |
Function1d< Basis > lsst::geom::polynomials::makeFunction1d | ( | Basis const & | basis, |
Eigen::VectorXd const & | coefficients | ||
) |
Create a Function1d of the appropriate type from a Basis1d and an Eigen object containing coefficients.
Definition at line 144 of file Function1d.h.
Function1d< Basis > lsst::geom::polynomials::makeFunction1d | ( | Basis const & | basis, |
Iterator | first, | ||
Iterator | last | ||
) |
Create a Function1d of the appropriate type from a Basis1d and an iterator range to copy coefficients from.
Definition at line 150 of file Function1d.h.
Function2d< Basis > lsst::geom::polynomials::makeFunction2d | ( | Basis const & | basis, |
Eigen::VectorXd const & | coefficients | ||
) |
Create a Function2d of the appropriate type from a Basis2d and an Eigen object containing coefficients.
Definition at line 155 of file Function2d.h.
Function2d< Basis > lsst::geom::polynomials::makeFunction2d | ( | Basis const & | basis, |
Iterator | first, | ||
Iterator | last | ||
) |
Create a Function2d of the appropriate type from a Basis2d and an iterator range to copy coefficients from.
Definition at line 161 of file Function2d.h.
|
inlinenoexcept |
Return a Scaling1d that maps the interval [min, max] to [-1, 1].
Definition at line 120 of file Scaling1d.h.
|
inline |
Return a Scaling1d that maps the given box to [-1, 1]x[-1, 1].
Definition at line 112 of file Scaling2d.h.
PolynomialFunction1d lsst::geom::polynomials::simplified | ( | ScaledPolynomialFunction1d const & | f | ) |
Calculate the standard polynomial function that is equivalent to a scaled standard polynomial function.
The returned polynomial will course have different coefficients than the input one, as these need to account for the scaling without it being explicitly applied.
Definition at line 32 of file PolynomialFunction1d.cc.
PolynomialFunction2d< packing > lsst::geom::polynomials::simplified | ( | ScaledPolynomialFunction2d< packing > const & | f | ) |
Calculate the standard polynomial function that is equivalent to a scaled standard polynomial function.
The coefficients of the returned polynomial will be different from those of the input in order to fold in the scaling. This is primarily useful in contexts where external code does not support the (more numerically stable) scaled representation, such as the FITS WCS SIP convention.
Definition at line 47 of file PolynomialFunction2d.cc.
template PolynomialFunction2d< PackingOrder::XY > lsst::geom::polynomials::simplified | ( | ScaledPolynomialFunction2d< PackingOrder::XY > const & | ) |
template PolynomialFunction2d< PackingOrder::YX > lsst::geom::polynomials::simplified | ( | ScaledPolynomialFunction2d< PackingOrder::YX > const & | ) |