diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-06 04:00:14 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-06 04:00:14 +0200 |
commit | 19a90c3a4db6ed8cf8b173e0cdda5a94c211c9eb (patch) | |
tree | 719dff90be1c046e5a21df1492f632bcceb22dd1 /test | |
parent | add test implemention of monotone cubic interpolation (diff) | |
download | blueshift-19a90c3a4db6ed8cf8b173e0cdda5a94c211c9eb.tar.gz blueshift-19a90c3a4db6ed8cf8b173e0cdda5a94c211c9eb.tar.bz2 blueshift-19a90c3a4db6ed8cf8b173e0cdda5a94c211c9eb.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'test')
-rwxr-xr-x | test/cubic_interpolation | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/cubic_interpolation b/test/cubic_interpolation index dac0d99..bc558e2 100755 --- a/test/cubic_interpolation +++ b/test/cubic_interpolation @@ -42,6 +42,7 @@ def main(): add_graph(fig, 223, [(i / 15) ** 0.5 for i in range(16)]) #add_graph(fig, 224, [random() for i in range(16)]) add_graph(fig, 224, [(-1) ** (i // 2) for i in range(16)]) + #add_graph(fig, 224, [i / 15 * (-1) ** (i // 2) for i in range(16)]) # Show graphs plot.show() |