fgt
C++ library for fast Gauss transforms
|
Direct Gauss transform. More...
#include <fgt.hpp>
Public Member Functions | |
Direct (const MatrixRef source, double bandwidth) | |
Creates a new direct transform. | |
Direct (const Direct &)=delete | |
Explicitly deleted copy constructor. | |
Direct & | operator= (const Direct &)=delete |
Explicitly deleted assgnment operator. | |
Direct & | operator= (Direct &&)=delete |
Explicitly deleted move assignment operator. | |
![]() | |
Transform (const MatrixRef source, double bandwidth) | |
Constructs a new transform that can be re-used with different targets. | |
Transform (const Transform &)=delete | |
Explicitly deleted copy constructor. | |
Transform & | operator= (const Transform &)=delete |
Explicitly deleted assgnment operator. | |
Transform & | operator= (Transform &&)=delete |
Explicitly deleted move assignment operator. | |
virtual | ~Transform () |
Destroys a transform. | |
const MatrixRef | source () const |
Returns the pointer to the source dataset. | |
double | bandwidth () const |
Returns the bandwidth of the transform. | |
Vector | compute (const MatrixRef target) |
Computes the Gauss transform for the given target dataset. | |
Vector | compute (const MatrixRef target, const VectorRef weights) |
Computes the Gauss transform with the given weights. | |
Direct Gauss transform.