LSST Applications g0265f82a02+d6b5cd48b5,g02d81e74bb+a41d3748ce,g1470d8bcf6+6be6c9203b,g2079a07aa2+14824f138e,g212a7c68fe+a4f2ea4efa,g2305ad1205+72971fe858,g295015adf3+ab2c85acae,g2bbee38e9b+d6b5cd48b5,g337abbeb29+d6b5cd48b5,g3ddfee87b4+31b3a28dff,g487adcacf7+082e807817,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+b2918d57ae,g5a732f18d5+66d966b544,g64a986408d+a41d3748ce,g858d7b2824+a41d3748ce,g8a8a8dda67+a6fc98d2e7,g99cad8db69+7fe4acdf18,g9ddcbc5298+d4bad12328,ga1e77700b3+246acaaf9c,ga8c6da7877+84af8b3ff8,gb0e22166c9+3863383f4c,gb6a65358fc+d6b5cd48b5,gba4ed39666+9664299f35,gbb8dafda3b+d8d527deb2,gc07e1c2157+b2dbe6b631,gc120e1dc64+61440b2abb,gc28159a63d+d6b5cd48b5,gcf0d15dbbd+31b3a28dff,gdaeeff99f8+a38ce5ea23,ge6526c86ff+39927bb362,ge79ae78c31+d6b5cd48b5,gee10cc3b42+a6fc98d2e7,gf1cff7945b+a41d3748ce,v24.1.5.rc1
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
ast::QuadApprox Class Reference

A quadratic approximation to a 2D Mapping. More...

#include <QuadApprox.h>

Public Member Functions

 QuadApprox (Mapping const &map, std::vector< double > const &lbnd, std::vector< double > const &ubnd, int nx=3, int ny=3)
 Obtain a quadratic approximation to a 2D Mapping.
 
 QuadApprox (QuadApprox const &)=default
 
 QuadApprox (QuadApprox &&)=default
 
QuadApproxoperator= (QuadApprox const &)=default
 
QuadApproxoperator= (QuadApprox &&)=default
 

Public Attributes

std::vector< double > fit
 A vector of coefficients of the quadratic approximation to the specified transformation.
 
double rms
 The RMS residual between the fit and the Mapping, summed over all Mapping outputs.
 

Detailed Description

A quadratic approximation to a 2D Mapping.

Construct the class to compute the contained fields:

Definition at line 36 of file QuadApprox.h.

Constructor & Destructor Documentation

◆ QuadApprox() [1/3]

ast::QuadApprox::QuadApprox ( Mapping const & map,
std::vector< double > const & lbnd,
std::vector< double > const & ubnd,
int nx = 3,
int ny = 3 )
explicit

Obtain a quadratic approximation to a 2D Mapping.

Compute the coefficients of a quadratic fit to the supplied Mapping over the input area specified by lbnd and ubnd. The Mapping must have 2 inputs, but may have any number of outputs. The i'th Mapping output is modeled as a quadratic function of the 2 inputs (x,y):

output_i = a_i_0 + a_i_1*x + a_i_2*y + a_i_3*x*y + a_i_4*x*x + a_i_5*y*y

The fit vector is set tothe values of the co-efficients a_0_0, a_0_1, etc.

Parameters
[in]mapMapping to fit.
[in]lbndThe lower bounds of a box defined within the input coordinate system of the Mapping. The number of elements in this vector should equal map.getNIn(). This box should specify the region over which the fit is to be performed.
[in]ubndThe upper bounds of the box specifying the region over which the fit is to be performed.
[in]nxThe number of points to place along the first Mapping input. The first point is at lbnd[0] and the last is at ubnd[0]". If a value less than three is supplied a value of three will be used.
[in]nyThe number of points to place along the second Mapping input. The first point is at lbnd[1] and the last is at ubnd[1]. If a value less than three is supplied a value of three will be used.
Exceptions
std::invalid_argumentif the mapping does not have 2 inputs, or if lbnd or ubnd do not each contain 2 elements.
std::runtime_errorif the fit cannot be computed.

Definition at line 31 of file QuadApprox.cc.

33 : fit(6 * map.getNOut()), rms(0) {
34 int const nIn = map.getNIn();
35 detail::assertEqual(nIn, "map.getNIn()", 2, "required nIn");
36 detail::assertEqual(lbnd.size(), "lbnd.size", static_cast<std::size_t>(nIn), "nIn");
37 detail::assertEqual(ubnd.size(), "ubnd.size", static_cast<std::size_t>(nIn), "nIn");
38 fit.reserve(6 * map.getNOut());
39 bool isok = astQuadApprox(map.getRawPtr(), lbnd.data(), ubnd.data(), nx, ny, fit.data(), &rms);
40 assertOK();
41 if (!isok) {
42 throw std::runtime_error("Failed to fit a quadratic approximation");
43 }
44}
double rms
The RMS residual between the fit and the Mapping, summed over all Mapping outputs.
Definition QuadApprox.h:102
std::vector< double > fit
A vector of coefficients of the quadratic approximation to the specified transformation.
Definition QuadApprox.h:98
T data(T... args)
void assertEqual(T1 val1, std::string const &descr1, T2 val2, std::string const &descr2)
Definition utils.h:48
void assertOK(AstObject *rawPtr1=nullptr, AstObject *rawPtr2=nullptr)
Throw std::runtime_error if AST's state is bad.
Definition base.cc:49
T reserve(T... args)
T size(T... args)

◆ QuadApprox() [2/3]

ast::QuadApprox::QuadApprox ( QuadApprox const & )
default

◆ QuadApprox() [3/3]

ast::QuadApprox::QuadApprox ( QuadApprox && )
default

Member Function Documentation

◆ operator=() [1/2]

QuadApprox & ast::QuadApprox::operator= ( QuadApprox && )
default

◆ operator=() [2/2]

QuadApprox & ast::QuadApprox::operator= ( QuadApprox const & )
default

Member Data Documentation

◆ fit

std::vector<double> ast::QuadApprox::fit

A vector of coefficients of the quadratic approximation to the specified transformation.

This vector will contain "6*NOut", elements: the first 6 elements hold the fit to the first Mapping output, the next 6 elements hold the fit to the second Mapping output, etc. So if the Mapping has 2 inputs and 2 outputs the quadratic approximation to the forward transformation is:

X_out = fit[0] + fit[1]*X_in + fit[2]*Y_in + fit[3]*X_in*Y_in +
        fit[4]*X_in*X_in + fit[5]*Y_in*Y_in
Y_out = fit[6] + fit[7]*X_in + fit[8]*Y_in + fit[9]*X_in*Y_in +
        fit[10]*X_in*X_in + fit[11]*Y_in*Y_in
X_out = fit(1) + fit(2)*X_in + fit(3)*Y_in + fit(4)*X_in*Y_in +
        fit(5)*X_in*X_in + fit(6)*Y_in*Y_in
Y_out = fit(7) + fit(8)*X_in + fit(9)*Y_in + fit(10)*X_in*Y_in +
        fit(11)*X_in*X_in + fit(12)*Y_in*Y_in

Definition at line 98 of file QuadApprox.h.

◆ rms

double ast::QuadApprox::rms

The RMS residual between the fit and the Mapping, summed over all Mapping outputs.

Definition at line 102 of file QuadApprox.h.


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