7 #ifndef LIN_CORE_TYPES_MATRIX_HPP_ 8 #define LIN_CORE_TYPES_MATRIX_HPP_ 10 #include "../config.hpp" 11 #include "../traits.hpp" 14 #include <type_traits> 34 template <
typename T,
size_t R,
size_t C,
size_t MR = R,
size_t MC = C>
37 "Invalid Matrix<...> parameters");
60 constexpr
Matrix() =
default;
81 template <
size_t R,
size_t C,
size_t MR = R,
size_t MC = C>
104 template <
size_t R,
size_t C,
size_t MR = R,
size_t MC = C>
122 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t MC>
127 template <
typename T,
size_t R,
size_t C,
size_t MR,
size_t 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;
136 struct _eval<C, std::enable_if_t<is_matrix<C>::value>> {
Provides a specific tensor type'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's dimensions.
Definition: dimensions.hpp:75
Provides a tensor type'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'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