summaryrefslogtreecommitdiff
path: root/src/mq/twm.h
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-02-16 15:22:46 +0000
committerJohn Glover <j@johnglover.net>2013-02-16 15:22:46 +0000
commitd91fc3a5b7b9d7a4ca85882b029fefe2c8daa156 (patch)
tree0a615b89f3268d11762477ed991cff586738d458 /src/mq/twm.h
parent2b9cec80434f0bef506633deff97d289b483c97d (diff)
downloadsimpl-d91fc3a5b7b9d7a4ca85882b029fefe2c8daa156.tar.gz
simpl-d91fc3a5b7b9d7a4ca85882b029fefe2c8daa156.tar.bz2
simpl-d91fc3a5b7b9d7a4ca85882b029fefe2c8daa156.zip
[mq] Add C++ implementation of TWM
Diffstat (limited to 'src/mq/twm.h')
-rw-r--r--src/mq/twm.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mq/twm.h b/src/mq/twm.h
new file mode 100644
index 0000000..e266861
--- /dev/null
+++ b/src/mq/twm.h
@@ -0,0 +1,19 @@
+#ifndef SIMPL_TWM_H
+#define SIMPL_TWM_H
+
+#include <map>
+#include <vector>
+
+#include "base.h"
+
+namespace simpl
+{
+
+int best_match(sample freq, std::vector<sample> candidates);
+
+sample twm(Peaks peaks, sample f_min=20.0,
+ sample f_max=3000.0, sample f_step=10.0);
+
+}
+
+#endif