lin
vector.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TYPES_VECTOR_HPP_
8 #define LIN_CORE_TYPES_VECTOR_HPP_
9 
10 #include "../config.hpp"
11 #include "../traits.hpp"
12 #include "tensor.hpp"
13 
14 #include <type_traits>
15 
16 namespace lin {
17 
32 template <typename T, size_t N, size_t MN = N>
33 class Vector : public internal::Tensor<Vector<T, N, MN>> {
34  static_assert(internal::is_col_vector<Vector<T, N, MN>>::value,
35  "Invalid Vector<...> parameters");
36 
37  public:
43 
49 
50  protected:
52 
53  public:
61  using internal::Tensor<Vector<T, N, MN>>::operator=;
62  using internal::Tensor<Vector<T, N, MN>>::operator();
63 
64  constexpr Vector() = default;
65  constexpr Vector(Vector<T, N, MN> const &) = default;
66  constexpr Vector(Vector<T, N, MN> &&) = default;
67  constexpr Vector<T, N, MN> &operator=(Vector<T, N, MN> const &) = default;
68  constexpr Vector<T, N, MN> &operator=(Vector<T, N, MN> &&) = default;
69 
81  constexpr Vector(size_t n)
82  : internal::Tensor<Vector<T, N, MN>>(n, 1) { }
83 
97  template <typename U>
98  constexpr Vector(size_t n, std::initializer_list<U> const &list)
99  : internal::Tensor<Vector<T, N, MN>>(n, 1, list) { }
100 
111  constexpr void resize(size_t n) {
112  resize(n, 1);
113  }
114 };
115 
130 template <typename T, size_t N, size_t MN = N>
131 class RowVector : public internal::Tensor<RowVector<T, N, MN>> {
132  static_assert(internal::is_row_vector<RowVector<T, N, MN>>::value,
133  "Invalid RowVector<...> parameters");
134 
135  public:
141 
147 
148  protected:
150 
151  public:
159  using internal::Tensor<RowVector<T, N, MN>>::operator=;
160  using internal::Tensor<RowVector<T, N, MN>>::operator();
161 
162  constexpr RowVector() = default;
163  constexpr RowVector(RowVector<T, N, MN> const &) = default;
164  constexpr RowVector(RowVector<T, N, MN> &&) = default;
165  constexpr RowVector<T, N, MN> &operator=(RowVector<T, N, MN> const &) = default;
166  constexpr RowVector<T, N, MN> &operator=(RowVector<T, N, MN> &&) = default;
167 
179  constexpr RowVector(size_t n)
180  : internal::Tensor<RowVector<T, N, MN>>(1, n) { }
181 
195  template <typename U>
196  constexpr RowVector(size_t n, std::initializer_list<U> const &list)
197  : internal::Tensor<RowVector<T, N, MN>>(1, n, list) { }
198 
209  constexpr void resize(size_t n) {
210  resize(1, n);
211  }
212 };
213 
226 template <size_t N, size_t MN = N>
228 
232 
241 template <size_t N, size_t MN = N>
243 
247 
256 template <size_t N, size_t MN = N>
258 
262 
271 template <size_t N, size_t MN = N>
273 
277 
281 namespace internal {
282 
283 template <typename T, size_t N, size_t MN>
284 struct _elem<Vector<T, N, MN>> {
285  typedef T type;
286 };
287 
288 template <typename T, size_t N, size_t MN>
289 struct _dims<Vector<T, N, MN>> {
290  static constexpr size_t rows = N;
291  static constexpr size_t cols = 1;
292  static constexpr size_t max_rows = MN;
293  static constexpr size_t max_cols = 1;
294 };
295 
296 template <class C>
297 struct _eval<C, std::enable_if_t<is_col_vector<C>::value>> {
298  typedef Vector<
299  _elem_t<C>,
302  > type;
303 };
304 
305 template <typename T, size_t N, size_t MN>
306 struct _elem<RowVector<T, N, MN>> {
307  typedef T type;
308 };
309 
310 template <typename T, size_t N, size_t MN>
311 struct _dims<RowVector<T, N, MN>> {
312  static constexpr size_t rows = 1;
313  static constexpr size_t cols = N;
314  static constexpr size_t max_rows = 1;
315  static constexpr size_t max_cols = MN;
316 };
317 
318 template <class C>
319 struct _eval<C, std::enable_if_t<is_row_vector<C>::value>> {
320  typedef RowVector<
321  _elem_t<C>,
324  > type;
325 };
326 } // namespace internal
327 } // namespace lin
328 
329 #endif
Vectorf< 3 > Vector3f
Three dimensional float vector.
Definition: vector.hpp:230
Collection of compile time information describing a tensor type which is deemed a vector...
Definition: vector.hpp:103
Vectorf< 4 > Vector4f
Four dimensional float vector.
Definition: vector.hpp:231
constexpr RowVector(size_t n, std::initializer_list< U > const &list)
Constructs a row vector with elements initialized from an initializer list and the requested length...
Definition: vector.hpp:196
Provides a specific tensor type&#39;s evaluation type.
Definition: tensor.hpp:44
constexpr Vector(size_t n, std::initializer_list< U > const &list)
Constructs a vector with elements initialized from an initializer list and the requested length...
Definition: vector.hpp:98
constexpr size_t size() const
Definition: stream.hpp:90
Generic vector.
Definition: vector.hpp:33
Provides a tensor type&#39;s element type.
Definition: tensor.hpp:28
Vectord< 4 > Vector4d
Four dimensional double vector.
Definition: vector.hpp:246
constexpr size_t cols() const
Definition: dimensions.hpp:60
constexpr Traits::elem_t * data()
Retrives a pointer to the element backing array.
Definition: tensor.hpp:155
internal::traits< RowVector< T, N, MN > > Traits
Traits information for this type.
Definition: vector.hpp:133
internal::vector_traits< Vector< T, N, MN > > VectorTraits
Vector traits information for this type.
Definition: vector.hpp:48
internal::vector_traits< RowVector< T, N, MN > > VectorTraits
Vector traits information for this type.
Definition: vector.hpp:146
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr Vector< T, N, MN > & derived()
Definition: stream.hpp:57
constexpr size_t rows() const
Definition: dimensions.hpp:56
constexpr Tensor()
Constructs a new tensor with zeros initialized elements and the largest allowable dimensions...
Definition: tensor.hpp:75
constexpr Vector(size_t n)
Constructs a vector with zero initialized elements are the requested length.
Definition: vector.hpp:81
RowVectorf< 2 > RowVector2f
Two dimensional float row vector.
Definition: vector.hpp:259
Member array backed tensor.
Definition: tensor.hpp:38
Vectorf< 2 > Vector2f
Two dimensional float vector.
Definition: vector.hpp:229
constexpr void resize(size_t n)
Resizes the vector&#39;s length.
Definition: vector.hpp:111
constexpr void resize(size_t n)
Resizes the row vector&#39;s length.
Definition: vector.hpp:209
Generic row vector.
Definition: vector.hpp:131
RowVectord< 3 > RowVector3d
Three dimensional double row vector.
Definition: vector.hpp:275
Vectord< 2 > Vector2d
Two dimensional double vector.
Definition: vector.hpp:244
RowVectorf< 3 > RowVector3f
Three dimensional float row vector.
Definition: vector.hpp:260
RowVectorf< 4 > RowVector4f
Four dimensional float row vector.
Definition: vector.hpp:261
Tests if a tensor type is a column vector.
Definition: vector.hpp:54
RowVectord< 2 > RowVector2d
Two dimensional double row vector.
Definition: vector.hpp:274
Definition: config.hpp:27
Vectord< 3 > Vector3d
Three dimensional double vector.
Definition: vector.hpp:245
constexpr RowVector(size_t n)
Constructs a row vector with zero initialized elements are the requested length.
Definition: vector.hpp:179
internal::traits< Vector< T, N, MN > > Traits
Traits information for this type.
Definition: vector.hpp:35
Tests if a tensor type is a row vector.
Definition: vector.hpp:33
RowVectord< 4 > RowVector4d
Four dimensional double row vector.
Definition: vector.hpp:276
Provides a specific tensor type&#39;s compile time dimensions.
Definition: tensor.hpp:60
constexpr Traits::eval_t eval() const
Forces evaluation of this stream to a value backed type.
Definition: stream.hpp:157