Multi-dimensional interpolation by kriging. More...
#include <interpm_krige.h>
Definition at line 64 of file interpm_krige.h.
Public Types | |
typedef boost::numeric::ublas::vector< double > | ubvector |
typedef boost::numeric::ublas::matrix< double > | ubmatrix |
typedef boost::numeric::ublas::vector< size_t > | ubvector_size_t |
Public Member Functions | |
template<class vec_vec_t , class vec_vec2_t > | |
void | set_data (size_t n_in, size_t n_out, size_t n_points, vec_vec_t &x, vec_vec2_t &y, std::vector< covar_func_t > &fcovar) |
Initialize the data for the interpolation. | |
template<class vec2_t , class vec3_t > | |
void | eval (const vec2_t &x, vec3_t &y, std::vector< covar_func_t > &fcovar) const |
Given covariance function fcovar and input vector x store the result of the interpolation in y . | |
Public Attributes | |
int | verbose |
Verbosity parameter (default 0) | |
Protected Attributes | |
std::vector< ubvector > | Kinvf |
Inverse covariance matrix times function vector. | |
size_t | np |
The number of points. | |
size_t | nd_in |
The number of dimensions of the inputs. | |
size_t | nd_out |
The number of dimensions of the outputs. | |
std::vector< vec_t > | ptrs_x |
A vector of pointers holding the data. | |
bool | data_set |
True if the data has been specified. | |
Documentation generated with Doxygen. Provided under the
GNU Free Documentation License (see License Information).