aboutsummaryrefslogtreecommitdiff
path: root/include/norms.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/norms.hpp')
-rw-r--r--include/norms.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/norms.hpp b/include/norms.hpp
new file mode 100644
index 0000000..85fad41
--- /dev/null
+++ b/include/norms.hpp
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "vector.hpp"
+
+namespace linalg {
+
+double norm2(const Vector& vector);
+
+}