7 #ifndef LIN_REFERENCES_VECTOR_MAPPING_REFERENCE_HPP_ 8 #define LIN_REFERENCES_VECTOR_MAPPING_REFERENCE_HPP_ 10 #include "../core.hpp" 34 template <
class E,
size_t N,
size_t MN>
37 "Derived types to VectorMappingReference<...> must have column vector traits");
98 template <
class E,
size_t N,
size_t MN>
100 typedef _elem_t<E> type;
103 template <
class E,
size_t N,
size_t MN>
105 static constexpr
size_t rows = N;
106 static constexpr
size_t cols = 1;
107 static constexpr
size_t max_rows = MN;
108 static constexpr
size_t max_cols = 1;
129 template <
class E,
size_t N,
size_t MN>
132 "Derived types to RowVectorMappingReference<...> must have row vector traits");
193 template <
class E,
size_t N,
size_t MN>
195 typedef _elem_t<E> type;
198 template <
class E,
size_t N,
size_t MN>
200 static constexpr
size_t rows = 1;
201 static constexpr
size_t cols = N;
202 static constexpr
size_t max_rows = 1;
203 static constexpr
size_t max_cols = MN;
traits< RowVectorMappingReference< E, N, MN > > Traits
Traits information for this type.
Definition: vector_mapping_reference.hpp:132
Collection of compile time information describing a tensor type which is deemed a vector...
Definition: vector.hpp:103
constexpr size_t size() const
Definition: stream.hpp:90
constexpr void resize(size_t r, size_t c)
Resizes a tensor's dimensions.
Definition: dimensions.hpp:75
Provides a tensor type's element type.
Definition: tensor.hpp:28
constexpr size_t cols() const
Definition: dimensions.hpp:60
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr VectorMappingReference< E, N, MN > & derived()
Definition: stream.hpp:57
constexpr size_t rows() const
Definition: dimensions.hpp:56
traits< VectorMappingReference< E, N, MN > > Traits
Traits information for this type.
Definition: vector_mapping_reference.hpp:37
Generic row vector reference with read and write access.
Definition: vector_mapping_reference.hpp:130
constexpr VectorMappingReference(Mapping< E > &mapping, size_t i, size_t j, size_t n)
Constructs a new vector reference with the provided mapping, anchor point, and length.
Definition: vector_mapping_reference.hpp:94
vector_traits< RowVectorMappingReference< E, N, MN > > VectorTraits
Vector traits information for this type.
Definition: vector_mapping_reference.hpp:145
constexpr RowVectorMappingReference(Mapping< E > &mapping, size_t i, size_t j, size_t n)
Constructs a new row vector reference with the provided mapping, anchor point, and length...
Definition: vector_mapping_reference.hpp:189
Generic tensor reference with read and write access.
Definition: tensor_mapping_reference.hpp:36
Tests if a tensor type is a column vector.
Definition: vector.hpp:54
Definition: config.hpp:27
vector_traits< VectorMappingReference< E, N, MN > > VectorTraits
Vector traits information for this type.
Definition: vector_mapping_reference.hpp:50
Tests if a tensor type is a row vector.
Definition: vector.hpp:33
Generic vector reference with read and write access.
Definition: vector_mapping_reference.hpp:35
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