Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+40afcc7e13,g0fba68d861+2cf5f380f6,g1fd858c14a+d4497073b1,g208c678f98+2d879463ba,g2c84ff76c0+12036dbf49,g35bb328faa+fcb1d3bbc8,g4d2262a081+2eb0d036a3,g4d39ba7253+a49fd2d81b,g4e0f332c67+c58e4b632d,g53246c7159+fcb1d3bbc8,g60b5630c4e+a49fd2d81b,g67b6fd64d1+dfd268ab64,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+e37c0d7b52,g89139ef638+dfd268ab64,g8d6b6b353c+a49fd2d81b,g8ec4aff861+ac98094cfc,g9125e01d80+fcb1d3bbc8,g989de1cb63+dfd268ab64,g9f33ca652e+f1cbaf6525,ga2b97cdc51+a49fd2d81b,gabe3b4be73+1e0a283bba,gb04aad79e7+7b3e21ef87,gb1101e3267+3ea6b9adb9,gb58c049af0+f03b321e39,gb89ab40317+dfd268ab64,gb90eeb9370+95a6a83b9d,gcf25f946ba+e37c0d7b52,gd315a588df+e0e29fc712,gd6cbbdb0b4+75aa4b1db4,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+33f4a7fb92,ge278dab8ac+c61fbefdff,ge410e46f29+dfd268ab64,ge82c20c137+e12a08b75a,gf67bdafdda+dfd268ab64,w.2025.11
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
PolynomialFunction1d.cc
Go to the documentation of this file.
1// -*- LSST-C++ -*-
2/*
3 * Developed for the LSST Data Management System.
4 * This product includes software developed by the LSST Project
5 * (https://www.lsst.org).
6 * See the COPYRIGHT file at the top-level directory of this distribution
7 * for details of code ownership.
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
23#include <vector>
24
28
29
30namespace lsst { namespace geom { namespace polynomials {
31
33 auto const & basis = f.getBasis();
34 std::vector<SafeSum<double>> sums(basis.size());
35 double const s = basis.getScaling().getScale();
36 double const v = basis.getScaling().getShift();
37 double sn = 1; // s^n
38 BinomialMatrix binomial(basis.getNested().getOrder());
39 for (std::size_t n = 0; n < basis.size(); ++n, sn *= s) {
40 double vk = 1; // v^k
41 for (std::size_t k = 0; k <= n; ++k, vk *= v) {
42 sums[n - k] += sn*binomial(n, k)*f[n]*vk;
43 }
44 }
45 Eigen::VectorXd result = Eigen::VectorXd::Zero(basis.size());
46 for (std::size_t n = 0; n < basis.size(); ++n) {
47 result[n] = static_cast<double>(sums[n]);
48 }
49 return makeFunction1d(basis.getNested(), result);
50}
51
52}}} // namespace lsst::geom::polynomials
A class that computes binomial coefficients up to a certain power.
Basis const & getBasis() const
Return the associated Basis1d object.
Definition Function1d.h:98
Low-level polynomials (including special polynomials) in C++.
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 coefficient...
Definition Function1d.h:144
PolynomialFunction1d simplified(ScaledPolynomialFunction1d const &f)
Calculate the standard polynomial function that is equivalent to a scaled standard polynomial functio...
Function1d< ScaledPolynomialBasis1d > ScaledPolynomialFunction1d
A Function1d for scaled standard polynomials.
Function1d< PolynomialBasis1d > PolynomialFunction1d
A Function1d for standard polynomials.