diff options
Diffstat (limited to 'include/vector.hpp')
| -rw-r--r-- | include/vector.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vector.hpp b/include/vector.hpp index e6bc0ce..3e797d8 100644 --- a/include/vector.hpp +++ b/include/vector.hpp @@ -41,6 +41,7 @@ Vector operator+(const Vector& lhs, const Vector& rhs); Vector operator-(const Vector& lhs, const Vector& rhs); Vector operator*(const Vector& v, double scalar); Vector operator*(double scalar, const Vector& v); +Vector operator/(const Vector& v, double scalar); double dot(const Vector& lhs, const Vector& rhs); } // namespace linalg |