Declaration of RBF basis.
Definition in file RBFBasis_fwd.hpp.
Go to the source code of this file.
Classes | |
class | mm::RBFBasis< RBFType, vec_t > |
Represents a basis of Radial Basis Functions over a local neighbourhood. More... | |
class | mm::Gaussian< scal_t > |
Gaussian Radial Basis Function. More... | |
class | mm::Multiquadric< scal_t > |
Multiquadric Radial Basis Function. More... | |
class | mm::InverseMultiquadric< scal_t > |
Inverse Multiquadric Radial Basis Function. More... | |
class | mm::Polyharmonic< scal_t, k > |
Polyharmonic Radial Basis Function of odd order. More... | |
Namespaces | |
mm | |
Root namespace for the whole library. | |
Typedefs | |
template<typename V > | |
using | mm::Gaussians = RBFBasis< Gaussian< typename V::scalar_t >, V > |
RBF basis using Gaussian RBF. Defined for convenience. More... | |
template<typename V > | |
using | mm::MQs = RBFBasis< Multiquadric< typename V::scalar_t >, V > |
RBF basis using Multiquadric RBF. Defined for convenience. More... | |
template<typename V > | |
using | mm::IMQs = RBFBasis< InverseMultiquadric< typename V::scalar_t >, V > |
RBF basis using InverseMultiquadric RBF. Defined for convenience. More... | |
template<typename V , int K = -1> | |
using | mm::PHs = RBFBasis< Polyharmonic< typename V::scalar_t, K >, V > |
RBF basis using Polyharmonic RBF. Defined for convenience. More... | |