lin
vector_operations.hpp
Go to the documentation of this file.
1 
5 // TODO : Documentation for this entire file
6 // TODO : Clean up the interface a bit if possible
7 
8 #ifndef LIN_CORE_OPERATIONS_VECTOR_OPERATIONS_HPP_
9 #define LIN_CORE_OPERATIONS_VECTOR_OPERATIONS_HPP_
10 
11 #include "../config.hpp"
12 #include "../traits.hpp"
13 #include "../types/stream.hpp"
14 #include "../types/vector.hpp"
15 #include "functors.hpp"
16 #include "tensor_operations.hpp"
17 
18 #include <cmath>
19 #include <type_traits>
20 
21 namespace lin {
22 namespace internal {
23 
24 template <class C, class D>
26  have_same_vector_dimensions<C, D, Vector3f>,
27  is_detected<multiply::expression, _elem_t<C>, _elem_t<D>>
28  > { };
29 
30 template <class C, class D>
32  have_same_vector_dimensions<C, D>,
33  is_detected<multiply::expression, _elem_t<C>, _elem_t<D>>
34  > { };
35 
36 template <class C>
37 struct can_norm : is_vector<C> { };
38 
39 } // namespace internal
40 
41 template <class C, class D, std::enable_if_t<internal::can_cross<C, D>::value, size_t> = 0>
42 constexpr auto cross(internal::Stream<C> const &u, internal::Stream<D> const &v) {
43 
44  typedef typename internal::multiply::template expression<internal::_elem_t<C>, internal::_elem_t<D>> T;
45 
46  return std::conditional_t<
49  RowVector<T, internal::_vector_dims<C>::length, internal::_vector_dims<C>::max_length>>({
50  u(1) * v(2) - u(2) * v(1),
51  u(2) * v(0) - u(0) * v(2),
52  u(0) * v(1) - u(1) * v(0)
53  });
54 }
55 
56 template <class C, class D, std::enable_if_t<internal::can_dot<C, D>::value, size_t> = 0>
57 constexpr auto dot(internal::Stream<C> const &u, internal::Stream<D> const &v) {
58  LIN_ASSERT(u.size() == v.size());
59 
60  typedef internal::multiply::expression<internal::_elem_t<C>, internal::_elem_t<D>> T;
61 
62  T x = u(0) * v(0);
63  for (size_t i = 1; i < u.size(); i++) x += u(i) * v(i);
64  return x;
65 }
66 
67 template <class C, std::enable_if_t<internal::can_norm<C>::value, size_t> = 0>
68 constexpr auto norm(internal::Stream<C> const &u) {
69  return std::sqrt(fro(u));
70 }
71 } // namespace lin
72 
73 #endif
Definition: vector_operations.hpp:25
constexpr size_t size() const
Definition: stream.hpp:90
Generic vector.
Definition: vector.hpp:33
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Definition: vector_operations.hpp:31
Generic row vector.
Definition: vector.hpp:131
Definition: vector_operations.hpp:37
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Tests if a tensor type is a vector.
Definition: vector.hpp:73
Tests if a tensor type is a column vector.
Definition: vector.hpp:54
Definition: config.hpp:27
Definition: vector.hpp:76