lin
matrix_view.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_VIEWS_MATRIX_VIEW_HPP_
8 #define LIN_VIEWS_MATRIX_VIEW_HPP_
9 
10 #include "../core.hpp"
11 #include "tensor_view.hpp"
12 
13 namespace lin {
14 namespace internal {
15 
33 template <typename T, size_t R, size_t C, size_t MR = R, size_t MC = C>
34 class MatrixView : public TensorView<MatrixView<T, R, C, MR, MC>> {
35  static_assert(is_matrix<Matrix<T, R, C, MR, MC>>::value,
36  "Invalid MatrixView<...> parameters");
37 
38  public:
44 
45  protected:
47 
48  public:
57  using TensorView<MatrixView<T, R, C, MR, MC>>::operator();
58 
59  constexpr MatrixView() = default;
60  constexpr MatrixView(MatrixView<T, R, C, MR, MC> const &) = default;
61  constexpr MatrixView(MatrixView<T, R, C, MR, MC> &&) = default;
62  constexpr MatrixView<T, R, C, MR, MC> &operator=(MatrixView<T, R, C, MR, MC> const &) = default;
63  constexpr MatrixView<T, R, C, MR, MC> &operator=(MatrixView<T, R, C, MR, MC> &&) = default;
64 };
65 
66 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
67 struct _elem<MatrixView<T, R, C, MR, MC>> {
68  typedef T type;
69 };
70 
71 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
72 struct _dims<MatrixView<T, R, C, MR, MC>> {
73  static constexpr size_t rows = R;
74  static constexpr size_t cols = C;
75  static constexpr size_t max_rows = MR;
76  static constexpr size_t max_cols = MC;
77 };
78 } // namespace internal
79 } // namespace lin
80 
81 #endif
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
constexpr size_t cols() const
Definition: dimensions.hpp:60
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr MatrixView< T, R, C, MR, MC > & derived()
Definition: stream.hpp:57
Generic matrix view.
Definition: matrix_view.hpp:34
constexpr size_t rows() const
Definition: dimensions.hpp:56
Generic matrix.
Definition: matrix.hpp:35
Member pointer backed tensor.
Definition: tensor_view.hpp:31
constexpr Traits::elem_t * data()
Retrives a pointer to the element backing array.
Definition: tensor_view.hpp:113
traits< MatrixView< T, R, C, MR, MC > > Traits
Traits information for this type.
Definition: matrix_view.hpp:36
Tests if a tensor type is a matrix.
Definition: matrix.hpp:27
Definition: config.hpp:27
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