lin
matrix.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TYPES_MATRIX_HPP_
8 #define LIN_CORE_TYPES_MATRIX_HPP_
9 
10 #include "../config.hpp"
11 #include "../traits.hpp"
12 #include "tensor.hpp"
13 
14 #include <type_traits>
15 
16 namespace lin {
17 
34 template <typename T, size_t R, size_t C, size_t MR = R, size_t MC = C>
35 class Matrix : public internal::Tensor<Matrix<T, R, C, MR, MC>> {
36  static_assert(internal::is_matrix<Matrix<T, R, C, MR, MC>>::value,
37  "Invalid Matrix<...> parameters");
38 
39  public:
45 
46  protected:
48 
49  public:
59 
60  constexpr Matrix() = default;
61  constexpr Matrix(Matrix<T, R, C, MR, MC> const &) = default;
62  constexpr Matrix(Matrix<T, R, C, MR, MC> &&) = default;
63  constexpr Matrix<T, R, C, MR, MC> &operator=(Matrix<T, R, C, MR, MC> const &) = default;
64  constexpr Matrix<T, R, C, MR, MC> &operator=(Matrix<T, R, C, MR, MC> &&) = default;
65 };
66 
81 template <size_t R, size_t C, size_t MR = R, size_t MC = C>
83 
93 
104 template <size_t R, size_t C, size_t MR = R, size_t MC = C>
106 
116 
120 namespace internal {
121 
122 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
123 struct _elem<Matrix<T, R, C, MR, MC>> {
124  typedef T type;
125 };
126 
127 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
128 struct _dims<Matrix<T, R, C, MR, MC>> {
129  static constexpr size_t rows = R;
130  static constexpr size_t cols = C;
131  static constexpr size_t max_rows = MR;
132  static constexpr size_t max_cols = MC;
133 };
134 
135 template <class C>
136 struct _eval<C, std::enable_if_t<is_matrix<C>::value>> {
137  typedef Matrix<
138  _elem_t<C>,
143  > type;
144 };
145 } // namespace internal
146 } // namespace lin
147 
148 #endif
Provides a specific tensor type&#39;s evaluation type.
Definition: tensor.hpp:44
constexpr size_t size() const
Definition: stream.hpp:90
constexpr void resize(size_t r, size_t c)
Resizes a tensor&#39;s dimensions.
Definition: dimensions.hpp:75
Provides a tensor type&#39;s element type.
Definition: tensor.hpp:28
Matrixd< 2, 3 > Matrix2x3d
Two by three double matrix.
Definition: matrix.hpp:110
internal::traits< Matrix< T, R, C, MR, MC > > Traits
Traits information for this type.
Definition: matrix.hpp:37
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
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
Matrixd< 3, 2 > Matrix3x2d
Three by two double matrix.
Definition: matrix.hpp:108
constexpr Matrix< T, R, C, MR, MC > & derived()
Definition: stream.hpp:57
Matrixd< 3, 3 > Matrix3x3d
Three by three double matrix.
Definition: matrix.hpp:111
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
Matrixf< 3, 2 > Matrix3x2f
Three by two float matrix.
Definition: matrix.hpp:85
Matrixd< 2, 2 > Matrix2x2d
Two by two double matrix.
Definition: matrix.hpp:107
Generic matrix.
Definition: matrix.hpp:35
Matrixf< 3, 4 > Matrix3x4f
Three by four float matrix.
Definition: matrix.hpp:91
Member array backed tensor.
Definition: tensor.hpp:38
Matrixf< 4, 4 > Matrix4x4f
Four by four float matrix.
Definition: matrix.hpp:92
Tests if a tensor type is a matrix.
Definition: matrix.hpp:27
Matrixf< 2, 2 > Matrix2x2f
Two by two float matrix.
Definition: matrix.hpp:84
Matrixd< 4, 3 > Matrix4x3d
Four by three double matrix.
Definition: matrix.hpp:112
Matrixd< 4, 2 > Matrix4x2d
Four by two double matrix.
Definition: matrix.hpp:109
Matrixf< 4, 3 > Matrix4x3f
Four by three float matrix.
Definition: matrix.hpp:89
Matrixf< 2, 4 > Matrix2x4f
Two by four float matrix.
Definition: matrix.hpp:90
Matrixd< 2, 4 > Matrix2x4d
Two by four double matrix.
Definition: matrix.hpp:113
Matrixf< 3, 3 > Matrix3x3f
Three by three float matrix.
Definition: matrix.hpp:88
Definition: config.hpp:27
Matrixf< 2, 3 > Matrix2x3f
Two by three float matrix.
Definition: matrix.hpp:87
Matrixf< 4, 2 > Matrix4x2f
Four by two float matrix.
Definition: matrix.hpp:86
Matrixd< 3, 4 > Matrix3x4d
Three by four double matrix.
Definition: matrix.hpp:114
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
Matrixd< 4, 4 > Matrix4x4d
Four by four double matrix.
Definition: matrix.hpp:115