LSSTApplications
18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
|
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. More... | |
QuadApprox (QuadApprox const &)=default | |
QuadApprox (QuadApprox &&)=default | |
QuadApprox & | operator= (QuadApprox const &)=default |
QuadApprox & | operator= (QuadApprox &&)=default |
Public Attributes | |
std::vector< double > | fit |
A vector of coefficients of the quadratic approximation to the specified transformation. More... | |
double | rms |
The RMS residual between the fit and the Mapping, summed over all Mapping outputs. More... | |
A quadratic approximation to a 2D Mapping.
Construct the class to compute the contained fields:
Definition at line 36 of file QuadApprox.h.
|
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.
[in] | map | Mapping to fit. |
[in] | lbnd | The 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] | ubnd | The upper bounds of the box specifying the region over which the fit is to be performed. |
[in] | nx | The 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] | ny | The 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. |
std::invalid_argument | if the mapping does not have 2 inputs, or if lbnd or ubnd do not each contain 2 elements. |
std::runtime_error | if the fit cannot be computed. |
Definition at line 31 of file QuadApprox.cc.
|
default |
|
default |
|
default |
|
default |
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.
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.