FACT++  1.0
void Interpolator2D::SetInputGrid ( const std::vector< Interpolator2D::vec > &  v)
inline

Definition at line 361 of file Interpolator2D.h.

References CalculateGrid(), and i.

362  {
363  circles.clear();
364  weights.clear();
365  outputGrid.clear();
366 
367  inputGrid.clear();
368  inputGrid.reserve(v.size());
369  for (unsigned int i=0; i<v.size(); i++)
370  inputGrid.emplace_back(i, v[i]);
371 
372  CalculateGrid();
373  }
void CalculateGrid()
the weights used for the interpolation
int i
Definition: db_dim_client.c:21
std::vector< point > outputGrid
positions of the data points (e.g. sensors)
std::vector< point > inputGrid
std::vector< circle > circles
positions at which inter-/extrapolated values should be provided
std::vector< weight > weights
the calculated circles/triangles

+ Here is the call graph for this function: