summaryrefslogtreecommitdiff
path: root/lib/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vector.h')
-rw-r--r--lib/vector.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/vector.h b/lib/vector.h
index 88934c1..6c72fd1 100644
--- a/lib/vector.h
+++ b/lib/vector.h
@@ -88,3 +88,9 @@ double correlation_component(vector_t <q, T> v) {
return (double)v.x[0];
}
+template <q_t q, class T>
+double H_vector(vector_t <q, T> v1, T *H) {
+ vector_t <q, T> H_vec;
+ H_vec.x = H;
+ return (double)(dot <q, T> (v1, H_vec));
+}