aboutsummaryrefslogtreecommitdiff
path: root/lyapunov.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-20 04:37:06 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-20 04:37:06 +0000
commit9ed18c7064226e1edc06f5a51fd569083971d448 (patch)
tree1069dc91e062bd557c61e43cbdac5d611a42a018 /lyapunov.h
parent56e77e8ed1b5dba873991b114d55cb1d399d47f5 (diff)
ported chaos to the Library Template, now with libchaos support
svn path=/trunk/externals/bbogart/chaos/; revision=15625
Diffstat (limited to 'lyapunov.h')
-rw-r--r--lyapunov.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/lyapunov.h b/lyapunov.h
deleted file mode 100644
index d6b71f5..0000000
--- a/lyapunov.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- a test file for lyapunov.h
- */
-
-#ifndef PD_VERSION
-#include "m_pd.h"
-#endif
-
-#define MAX_VARS 20
-
-/*
- * fractal - pointer to the object under test
- * calc - the iteration function
- * var_count - the number of variables for this fractal class
- * vars - pointer to the fractal variables array
- */
-double lyapunov(void *fractal, t_gotfn calc, int var_count, double *vars);
-
-/*
- * CAUTION: ON FRACTALS WITH LOTS OF VARIABLES, THIS WILL TAKE A WHILE.
- * This is an experimental function to test the ability of the function to
- * calculate an accurate exponent by aberating each variable in the fractal.
- * returns 'results' on completion.
- */
-double *lyapunov_full(void *fractal, t_gotfn calc, int var_count, double *vars, double *results);