7 #ifndef LIN_CORE_TYPES_VECTOR_HPP_ 8 #define LIN_CORE_TYPES_VECTOR_HPP_ 10 #include "../config.hpp" 11 #include "../traits.hpp" 14 #include <type_traits> 32 template <
typename T,
size_t N,
size_t MN = N>
35 "Invalid Vector<...> parameters");
64 constexpr
Vector() =
default;
82 : internal::
Tensor<Vector<T, N, MN>>(n, 1) { }
98 constexpr
Vector(
size_t n, std::initializer_list<U>
const &list)
99 : internal::
Tensor<Vector<T, N, MN>>(n, 1, list) { }
130 template <
typename T,
size_t N,
size_t MN = N>
133 "Invalid RowVector<...> parameters");
180 : internal::
Tensor<RowVector<T, N, MN>>(1, n) { }
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) { }
226 template <
size_t N,
size_t MN = N>
241 template <
size_t N,
size_t MN = N>
256 template <
size_t N,
size_t MN = N>
271 template <
size_t N,
size_t MN = N>
283 template <
typename T,
size_t N,
size_t MN>
288 template <
typename T,
size_t N,
size_t 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;
297 struct _eval<C, std::enable_if_t<is_col_vector<C>::value>> {
305 template <
typename T,
size_t N,
size_t MN>
310 template <
typename T,
size_t N,
size_t 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;
319 struct _eval<C, std::enable_if_t<is_row_vector<C>::value>> {
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'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'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's length.
Definition: vector.hpp:111
constexpr void resize(size_t n)
Resizes the row vector'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'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