summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/cubic_interpolation8
-rwxr-xr-xtest/linear_interpolation8
2 files changed, 12 insertions, 4 deletions
diff --git a/test/cubic_interpolation b/test/cubic_interpolation
index 537102c..83b34b0 100755
--- a/test/cubic_interpolation
+++ b/test/cubic_interpolation
@@ -12,7 +12,9 @@ print('Loading matplotlib.pyplot...')
import matplotlib.pyplot as plot
print('Done loading matplotlib.pyplot')
+# Modules used for input data generation
from math import *
+from random import *
def main():
@@ -20,8 +22,10 @@ def main():
fig = plot.figure()
# Add graphs
- add_graph(fig, 211, [i / 15 for i in range(16)])
- add_graph(fig, 212, [sin(6 * i / 15) for i in range(16)])
+ add_graph(fig, 221, [i / 15 for i in range(16)])
+ add_graph(fig, 222, [sin(6 * i / 15) for i in range(16)])
+ add_graph(fig, 223, [(i / 15) ** 0.5 for i in range(16)])
+ add_graph(fig, 224, [random() for i in range(16)])
# Show graphs
plot.show()
diff --git a/test/linear_interpolation b/test/linear_interpolation
index 140616c..7bca841 100755
--- a/test/linear_interpolation
+++ b/test/linear_interpolation
@@ -14,7 +14,9 @@ print('Loading matplotlib.pyplot...')
import matplotlib.pyplot as plot
print('Done loading matplotlib.pyplot')
+# Modules used for input data generation
from math import *
+from random import *
def main():
@@ -22,8 +24,10 @@ def main():
fig = plot.figure()
# Add graphs
- add_graph(fig, 211, [i / 15 for i in range(16)])
- add_graph(fig, 212, [sin(6 * i / 15) for i in range(16)])
+ add_graph(fig, 221, [i / 15 for i in range(16)])
+ add_graph(fig, 222, [sin(6 * i / 15) for i in range(16)])
+ add_graph(fig, 223, [(i / 15) ** 0.5 for i in range(16)])
+ add_graph(fig, 224, [random() for i in range(16)])
# Show graphs
plot.show()