LSST Applications g04a91732dc+cc8870d3f5,g07dc498a13+5aa0b8792f,g0fba68d861+488cddfaa9,g1409bbee79+5aa0b8792f,g1a7e361dbc+5aa0b8792f,g1fd858c14a+f64bc332a9,g35bb328faa+fcb1d3bbc8,g4d2262a081+b1c1982739,g4d39ba7253+9633a327c1,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+9633a327c1,g668ecb457e+25d63fd678,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+8b64ca622a,g89139ef638+5aa0b8792f,g89e1512fd8+37f975783e,g8d6b6b353c+9633a327c1,g9125e01d80+fcb1d3bbc8,g989de1cb63+5aa0b8792f,g9f33ca652e+b196626af7,ga9baa6287d+9633a327c1,gaaedd4e678+5aa0b8792f,gabe3b4be73+1e0a283bba,gb1101e3267+71e32094df,gb58c049af0+f03b321e39,gb90eeb9370+2807b1ad02,gc741bbaa4f+1ae86710ed,gcf25f946ba+8b64ca622a,gd315a588df+a39986a76f,gd6cbbdb0b4+c8606af20c,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+94dfc458f4,ge278dab8ac+932305ba37,ge82c20c137+76d20ab76d,gfe73954cf8+a1301e4c20,w.2025.11
LSST Data Management Base Package
|
Conversions between shapelet basis types. More...
#include <ConversionMatrix.h>
Public Member Functions | |
Eigen::MatrixXd | getBlock (int n) const |
Return a block of the block-diagonal conversion matrix. | |
Eigen::MatrixXd | buildDenseMatrix () const |
Construct the full conversion matrix (should just be used for testing). | |
void | multiplyOnLeft (ndarray::Array< double, 1 > const &array) const |
Multiply the given array by the conversion matrix on the left in-place. | |
void | multiplyOnRight (ndarray::Array< double, 1 > const &array) const |
Multiply the given array by the conversion matrix on the right in-place. | |
ConversionMatrix (BasisTypeEnum input, BasisTypeEnum output, int order) | |
Construct a conversion matrix that maps the input basis to the output basis. | |
Static Public Member Functions | |
static void | convertCoefficientVector (ndarray::Array< double, 1 > const &array, BasisTypeEnum input, BasisTypeEnum output, int order) |
Convert a coefficient vector between basis types in-place. | |
static void | convertOperationVector (ndarray::Array< double, 1 > const &array, BasisTypeEnum input, BasisTypeEnum output, int order) |
Convert an operation (evaluation, integration) vector between basis types in-place. | |
Conversions between shapelet basis types.
The basis conversion matrix is block-diagonal and only needs to be computed once, so we cache the blocks in a hidden singleton and provide operations that act on shapelet matrices while taking advantage of the sparseness of the conversion.
Definition at line 42 of file ConversionMatrix.h.
|
explicit |
Construct a conversion matrix that maps the input basis to the output basis.
Eigen::MatrixXd lsst::shapelet::ConversionMatrix::buildDenseMatrix | ( | ) | const |
Construct the full conversion matrix (should just be used for testing).
|
static |
Convert a coefficient vector between basis types in-place.
|
static |
Convert an operation (evaluation, integration) vector between basis types in-place.
Eigen::MatrixXd lsst::shapelet::ConversionMatrix::getBlock | ( | int | n | ) | const |
Return a block of the block-diagonal conversion matrix.
void lsst::shapelet::ConversionMatrix::multiplyOnLeft | ( | ndarray::Array< double, 1 > const & | array | ) | const |
Multiply the given array by the conversion matrix on the left in-place.
void lsst::shapelet::ConversionMatrix::multiplyOnRight | ( | ndarray::Array< double, 1 > const & | array | ) | const |
Multiply the given array by the conversion matrix on the right in-place.