summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-05 23:58:54 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-05 23:58:54 +0200
commit7b9ab1d537d6feb65d0d6f5d74a03b288cb19a3d (patch)
treed8221b5110a45df34757aa1075123b7440ee353d
parent...the python 3.4 way if using python 3.4 or newer (diff)
downloadblueshift-7b9ab1d537d6feb65d0d6f5d74a03b288cb19a3d.tar.gz
blueshift-7b9ab1d537d6feb65d0d6f5d74a03b288cb19a3d.tar.bz2
blueshift-7b9ab1d537d6feb65d0d6f5d74a03b288cb19a3d.tar.xz
add test of linear interpolation
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--test/README9
-rwxr-xr-xtest/linear_interpolation70
2 files changed, 79 insertions, 0 deletions
diff --git a/test/README b/test/README
new file mode 100644
index 0000000..9a33971
--- /dev/null
+++ b/test/README
@@ -0,0 +1,9 @@
+These are test for matematical formulæ.
+They require python-matplotlib, and that
+you run in a graphical session.
+
+Ohh, and if you wrap everying arount
+`with plot.xkcd():` and have Humor Sans
+installed, it is going to be awesome,
+but not too useful.
+
diff --git a/test/linear_interpolation b/test/linear_interpolation
new file mode 100755
index 0000000..ae622cc
--- /dev/null
+++ b/test/linear_interpolation
@@ -0,0 +1,70 @@
+#!/usr/bin/env python3
+# -*- python -*-
+
+
+# Test of linear interpolation.
+# Intended as a test of the test and
+# as a reference implemention of a test.
+
+
+# Load matplotlib.pyplot,
+# it can take some time so
+# print information about it.
+print('Loading matplotlib.pyplot...')
+import matplotlib.pyplot as plot
+print('Done loading matplotlib.pyplot')
+
+
+def main():
+ # Create a page with graphs
+ fig = plot.figure()
+
+ # Add graphs
+ add_graph(fig, 111, [i / 15 for i in range(16)])
+
+ # Show graphs
+ plot.show()
+
+def add_graph(fig, graph_pos, input_values):
+ '''
+ Add a graph
+
+ @param fig:Figure The page to which to add the graph
+ @param graph_pos:int Where to place the graph
+ @param input_values:list<float> The input values for each point
+ '''
+ # Interpolate data
+ output_values = interpolate(input_values)
+ # Number of input points
+ n = len(input_values)
+ # Number of output points
+ m = len(output_values)
+ # Create graph
+ graph = fig.add_subplot(graph_pos)
+ # Plot interpolated data
+ graph.plot([i / (m - 1) for i in range(m)], output_values, 'b-')
+ # Plot input data
+ graph.plot([i / (n - 1) for i in range(n)], input_values, 'ro')
+
+
+def interpolate(small):
+ '''
+ Interpolate data
+
+ @param small:list<float> The input values for each point
+ @return :list<float> The values for each point in a scaled up version
+ '''
+ large = [None] * len(small) ** 2
+ small_, large_ = len(small) - 1, len(large) - 1
+ for i in range(len(large)):
+ # Scaling
+ j = i * small_ / large_
+ # Floor, weight, ceiling
+ j, w, k = int(j), j % 1, min(int(j) + 1, small_)
+ # Interpolation
+ large[i] = small[j] * (1 - w) + small[k] * w
+ return large
+
+# Plot interpolation
+main()
+