summaryrefslogtreecommitdiffstats
path: root/interp.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-07-06 11:26:37 -0400
committerErik Schnetter <schnetter@gmail.com>2013-07-06 11:26:37 -0400
commit9aae1a3f9eda2245da639e8d235eb4fc900ccf75 (patch)
treefb4decfa8cf90e2c9ab052218690fc78acd681b8 /interp.cc
parenta08e3f63de017a4f9f8b9559bb02725e7e527545 (diff)
downloadvecmathlib-9aae1a3f9eda2245da639e8d235eb4fc900ccf75.zip
vecmathlib-9aae1a3f9eda2245da639e8d235eb4fc900ccf75.tar.gz
Add example that interpolates from an array
Diffstat (limited to 'interp.cc')
-rw-r--r--interp.cc63
1 files changed, 63 insertions, 0 deletions
diff --git a/interp.cc b/interp.cc
new file mode 100644
index 0000000..d811233
--- /dev/null
+++ b/interp.cc
@@ -0,0 +1,63 @@
+#include <algorithm>
+#include <cassert>
+#include <cstdlib>
+#include <iostream>
+#include <vector>
+using namespace std;
+
+#include "vecmathlib.h"
+using namespace vecmathlib;
+
+typedef realvec<double,2> realvec_t;
+typedef realvec_t::real_t real_t;
+typedef realvec_t::intvec_t intvec_t;
+typedef intvec_t::int_t int_t;
+
+
+
+realvec_t interp(const real_t* array, ptrdiff_t size,
+ real_t xmin, real_t xmax,
+ realvec_t x)
+{
+ assert(size >= 2);
+ // spacing
+ real_t dx = (xmax - xmin) / (size - 1);
+ real_t idx = 1.0 / dx;
+ // determine location in array
+ realvec_t scaled = (x - realvec_t(xmin)) * realvec_t(idx);
+ realvec_t cell = floor(scaled);
+ intvec_t n = convert_int(cell);
+ // gather values from array
+ realvec_t x0, x1;
+ for (ptrdiff_t i=0; i<realvec_t::size; ++i) {
+ // ensure location is not out of bounds
+ ptrdiff_t j = max(ptrdiff_t(0), min(size-2, ptrdiff_t(n[i])));
+ x0.set_elt(i, array[j]);
+ x1.set_elt(i, array[j+1]);
+ }
+ // determine interpolation weights
+ realvec_t offset = scaled - cell;
+ realvec_t w0 = realvec_t(1.0) - offset;
+ realvec_t w1 = offset;
+ // interpolate
+ realvec_t y = w0 * x0 + w1 * x1;
+ return y;
+}
+
+
+
+int main(int argc, char** argv)
+{
+ ptrdiff_t size = 1001;
+ vector<real_t> array(size);
+ for (ptrdiff_t i=0; i<size; ++i) array[i] = real_t(i) / 1000.0;
+
+ real_t xmin = 0.0;
+ real_t xmax = 0.5;
+ realvec_t x = 0.333;
+ cout << "x=" << x << "\n";
+ realvec_t y = interp(&array[0], size, xmin, xmax, x);
+ cout << "y=" << y << "\n";
+
+ return 0;
+}
OpenPOWER on IntegriCloud