Diagonal.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2007-2009 Benoit Jacob <jacob.benoit.1@gmail.com>
5 // Copyright (C) 2009-2010 Gael Guennebaud <gael.guennebaud@inria.fr>
6 //
7 // This Source Code Form is subject to the terms of the Mozilla
8 // Public License v. 2.0. If a copy of the MPL was not distributed
9 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 
11 #ifndef EIGEN_DIAGONAL_H
12 #define EIGEN_DIAGONAL_H
13 
14 namespace Eigen {
15 
35 namespace internal {
36 template<typename MatrixType, int DiagIndex>
37 struct traits<Diagonal<MatrixType,DiagIndex> >
38  : traits<MatrixType>
39 {
42  typedef typename MatrixType::StorageKind StorageKind;
43  enum {
44  RowsAtCompileTime = (int(DiagIndex) == DynamicIndex || int(MatrixType::SizeAtCompileTime) == Dynamic) ? Dynamic
45  : (EIGEN_PLAIN_ENUM_MIN(MatrixType::RowsAtCompileTime - EIGEN_PLAIN_ENUM_MAX(-DiagIndex, 0),
46  MatrixType::ColsAtCompileTime - EIGEN_PLAIN_ENUM_MAX( DiagIndex, 0))),
47  ColsAtCompileTime = 1,
48  MaxRowsAtCompileTime = int(MatrixType::MaxSizeAtCompileTime) == Dynamic ? Dynamic
49  : DiagIndex == DynamicIndex ? EIGEN_SIZE_MIN_PREFER_FIXED(MatrixType::MaxRowsAtCompileTime,
50  MatrixType::MaxColsAtCompileTime)
51  : (EIGEN_PLAIN_ENUM_MIN(MatrixType::MaxRowsAtCompileTime - EIGEN_PLAIN_ENUM_MAX(-DiagIndex, 0),
52  MatrixType::MaxColsAtCompileTime - EIGEN_PLAIN_ENUM_MAX( DiagIndex, 0))),
53  MaxColsAtCompileTime = 1,
54  MaskLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
55  Flags = (unsigned int)_MatrixTypeNested::Flags & (RowMajorBit | MaskLvalueBit | DirectAccessBit) & ~RowMajorBit, // FIXME DirectAccessBit should not be handled by expressions
56  MatrixTypeOuterStride = outer_stride_at_compile_time<MatrixType>::ret,
57  InnerStrideAtCompileTime = MatrixTypeOuterStride == Dynamic ? Dynamic : MatrixTypeOuterStride+1,
58  OuterStrideAtCompileTime = 0
59  };
60 };
61 }
62 
63 template<typename MatrixType, int _DiagIndex> class Diagonal
64  : public internal::dense_xpr_base< Diagonal<MatrixType,_DiagIndex> >::type
65 {
66  public:
67 
68  enum { DiagIndex = _DiagIndex };
71 
72  EIGEN_DEVICE_FUNC
73  explicit inline Diagonal(MatrixType& matrix, Index a_index = DiagIndex) : m_matrix(matrix), m_index(a_index)
74  {
75  eigen_assert( a_index <= m_matrix.cols() && -a_index <= m_matrix.rows() );
76  }
77 
79 
80  EIGEN_DEVICE_FUNC
81  inline Index rows() const
82  {
83  return m_index.value()<0 ? numext::mini<Index>(m_matrix.cols(),m_matrix.rows()+m_index.value())
84  : numext::mini<Index>(m_matrix.rows(),m_matrix.cols()-m_index.value());
85  }
86 
87  EIGEN_DEVICE_FUNC
88  inline Index cols() const { return 1; }
89 
90  EIGEN_DEVICE_FUNC
91  inline Index innerStride() const
92  {
93  return m_matrix.outerStride() + 1;
94  }
95 
96  EIGEN_DEVICE_FUNC
97  inline Index outerStride() const
98  {
99  return 0;
100  }
101 
102  typedef typename internal::conditional<
104  Scalar,
105  const Scalar
107 
108  EIGEN_DEVICE_FUNC
109  inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.coeffRef(rowOffset(), colOffset())); }
110  EIGEN_DEVICE_FUNC
111  inline const Scalar* data() const { return &(m_matrix.coeffRef(rowOffset(), colOffset())); }
112 
113  EIGEN_DEVICE_FUNC
115  {
117  return m_matrix.coeffRef(row+rowOffset(), row+colOffset());
118  }
119 
120  EIGEN_DEVICE_FUNC
121  inline const Scalar& coeffRef(Index row, Index) const
122  {
123  return m_matrix.coeffRef(row+rowOffset(), row+colOffset());
124  }
125 
126  EIGEN_DEVICE_FUNC
127  inline CoeffReturnType coeff(Index row, Index) const
128  {
129  return m_matrix.coeff(row+rowOffset(), row+colOffset());
130  }
131 
132  EIGEN_DEVICE_FUNC
133  inline Scalar& coeffRef(Index idx)
134  {
136  return m_matrix.coeffRef(idx+rowOffset(), idx+colOffset());
137  }
138 
139  EIGEN_DEVICE_FUNC
140  inline const Scalar& coeffRef(Index idx) const
141  {
142  return m_matrix.coeffRef(idx+rowOffset(), idx+colOffset());
143  }
144 
145  EIGEN_DEVICE_FUNC
146  inline CoeffReturnType coeff(Index idx) const
147  {
148  return m_matrix.coeff(idx+rowOffset(), idx+colOffset());
149  }
150 
151  EIGEN_DEVICE_FUNC
154  {
155  return m_matrix;
156  }
157 
158  EIGEN_DEVICE_FUNC
159  inline Index index() const
160  {
161  return m_index.value();
162  }
163 
164  protected:
167 
168  private:
169  // some compilers may fail to optimize std::max etc in case of compile-time constants...
170  EIGEN_DEVICE_FUNC
171  EIGEN_STRONG_INLINE Index absDiagIndex() const { return m_index.value()>0 ? m_index.value() : -m_index.value(); }
172  EIGEN_DEVICE_FUNC
173  EIGEN_STRONG_INLINE Index rowOffset() const { return m_index.value()>0 ? 0 : -m_index.value(); }
174  EIGEN_DEVICE_FUNC
175  EIGEN_STRONG_INLINE Index colOffset() const { return m_index.value()>0 ? m_index.value() : 0; }
176  // trigger a compile-time error if someone try to call packet
177  template<int LoadMode> typename MatrixType::PacketReturnType packet(Index) const;
178  template<int LoadMode> typename MatrixType::PacketReturnType packet(Index,Index) const;
179 };
180 
189 template<typename Derived>
192 {
193  return DiagonalReturnType(derived());
194 }
195 
197 template<typename Derived>
200 {
201  return ConstDiagonalReturnType(derived());
202 }
203 
215 template<typename Derived>
218 {
219  return DiagonalDynamicIndexReturnType(derived(), index);
220 }
221 
223 template<typename Derived>
226 {
227  return ConstDiagonalDynamicIndexReturnType(derived(), index);
228 }
229 
241 template<typename Derived>
242 template<int Index_>
245 {
246  return typename DiagonalIndexReturnType<Index_>::Type(derived());
247 }
248 
250 template<typename Derived>
251 template<int Index_>
252 inline typename MatrixBase<Derived>::template ConstDiagonalIndexReturnType<Index_>::Type
254 {
255  return typename ConstDiagonalIndexReturnType<Index_>::Type(derived());
256 }
257 
258 } // end namespace Eigen
259 
260 #endif // EIGEN_DIAGONAL_H
Eigen::internal::traits< Diagonal< MatrixType, DiagIndex > >::MatrixTypeNested
ref_selector< MatrixType >::type MatrixTypeNested
Definition: Diagonal.h:40
Eigen::Diagonal::innerStride
EIGEN_DEVICE_FUNC Index innerStride() const
Definition: Diagonal.h:91
Eigen::MatrixBase::ConstDiagonalReturnType
internal::add_const< Diagonal< const Derived > >::type ConstDiagonalReturnType
Definition: MatrixBase.h:209
Eigen::Diagonal::m_matrix
internal::ref_selector< MatrixType >::non_const_type m_matrix
Definition: Diagonal.h:165
Eigen
Definition: common.h:73
Eigen::Diagonal::nestedExpression
const EIGEN_DEVICE_FUNC internal::remove_all< typename MatrixType::Nested >::type & nestedExpression() const
Definition: Diagonal.h:153
Eigen::Diagonal::data
EIGEN_DEVICE_FUNC ScalarWithConstIfNotLvalue * data()
Definition: Diagonal.h:109
Eigen::internal::dense_xpr_base
Definition: XprHelper.h:463
eigen_assert
#define eigen_assert(x)
Definition: Macros.h:579
Eigen::Diagonal::rows
EIGEN_DEVICE_FUNC Index rows() const
Definition: Diagonal.h:81
Eigen::internal::is_lvalue
Definition: XprHelper.h:639
Eigen::internal::variable_if_dynamicindex::value
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE T value()
Definition: XprHelper.h:132
Eigen::RowMajorBit
const unsigned int RowMajorBit
Definition: Constants.h:61
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Eigen::Diagonal::colOffset
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index colOffset() const
Definition: Diagonal.h:175
EIGEN_DENSE_PUBLIC_INTERFACE
#define EIGEN_DENSE_PUBLIC_INTERFACE(Derived)
Definition: Macros.h:870
Scalar
SCALAR Scalar
Definition: common.h:84
Eigen::Diagonal::coeffRef
EIGEN_DEVICE_FUNC Scalar & coeffRef(Index row, Index)
Definition: Diagonal.h:114
ret
DenseIndex ret
Definition: level1_impl.h:59
matrix
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
Definition: common.h:102
Eigen::DirectAccessBit
const unsigned int DirectAccessBit
Definition: Constants.h:150
Eigen::MatrixBase::ConstDiagonalDynamicIndexReturnType
internal::add_const< Diagonal< const Derived, DynamicIndex > >::type ConstDiagonalDynamicIndexReturnType
Definition: MatrixBase.h:225
EIGEN_PLAIN_ENUM_MIN
#define EIGEN_PLAIN_ENUM_MIN(a, b)
Definition: Macros.h:875
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::internal::remove_reference::type
T type
Definition: Meta.h:66
Eigen::internal::traits< Diagonal< MatrixType, DiagIndex > >::StorageKind
MatrixType::StorageKind StorageKind
Definition: Diagonal.h:42
Eigen::LvalueBit
const unsigned int LvalueBit
Definition: Constants.h:139
Eigen::Diagonal::ScalarWithConstIfNotLvalue
internal::conditional< internal::is_lvalue< MatrixType >::value, Scalar, const Scalar >::type ScalarWithConstIfNotLvalue
Definition: Diagonal.h:106
Eigen::Diagonal::Base
internal::dense_xpr_base< Diagonal >::type Base
Definition: Diagonal.h:69
Eigen::Dynamic
const int Dynamic
Definition: Constants.h:21
Eigen::Architecture::Type
Type
Definition: Constants.h:461
Eigen::Diagonal::absDiagIndex
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index absDiagIndex() const
Definition: Diagonal.h:171
Eigen::Diagonal::coeffRef
const EIGEN_DEVICE_FUNC Scalar & coeffRef(Index idx) const
Definition: Diagonal.h:140
Eigen::Diagonal
Expression of a diagonal/subdiagonal/superdiagonal in a matrix.
Definition: Diagonal.h:63
Eigen::MatrixBase::DiagonalDynamicIndexReturnType
Diagonal< Derived, DynamicIndex > DiagonalDynamicIndexReturnType
Definition: MatrixBase.h:224
row
EIGEN_DEVICE_FUNC RowXpr row(Index i)
This is the const version of row(). *‍/.
Definition: BlockMethods.h:859
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::internal::outer_stride_at_compile_time
Definition: DenseCoeffsBase.h:666
Eigen::Diagonal::outerStride
EIGEN_DEVICE_FUNC Index outerStride() const
Definition: Diagonal.h:97
Eigen::Diagonal::cols
EIGEN_DEVICE_FUNC Index cols() const
Definition: Diagonal.h:88
Eigen::Diagonal::index
EIGEN_DEVICE_FUNC Index index() const
Definition: Diagonal.h:159
Eigen::internal::variable_if_dynamicindex< Index, DiagIndex >
Eigen::Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> >
Eigen::internal::ref_selector
Definition: XprHelper.h:396
Eigen::Diagonal::m_index
const internal::variable_if_dynamicindex< Index, DiagIndex > m_index
Definition: Diagonal.h:166
int
return int(ret)+1
Eigen::Diagonal::rowOffset
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rowOffset() const
Definition: Diagonal.h:173
Eigen::Diagonal::coeff
EIGEN_DEVICE_FUNC CoeffReturnType coeff(Index idx) const
Definition: Diagonal.h:146
Eigen::internal::traits< Diagonal< MatrixType, DiagIndex > >::_MatrixTypeNested
remove_reference< MatrixTypeNested >::type _MatrixTypeNested
Definition: Diagonal.h:41
Eigen::Diagonal::Diagonal
EIGEN_DEVICE_FUNC Diagonal(MatrixType &matrix, Index a_index=DiagIndex)
Definition: Diagonal.h:73
Eigen::MatrixBase::DiagonalReturnType
Diagonal< Derived > DiagonalReturnType
Definition: MatrixBase.h:205
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::internal::conditional
Definition: Meta.h:58
EIGEN_PLAIN_ENUM_MAX
#define EIGEN_PLAIN_ENUM_MAX(a, b)
Definition: Macros.h:876
Eigen::MatrixBase::diagonal
EIGEN_DEVICE_FUNC DiagonalReturnType diagonal()
Definition: Diagonal.h:191
internal
Definition: BandTriangularSolver.h:13
Eigen::MatrixBase
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
Eigen::DynamicIndex
const int DynamicIndex
Definition: Constants.h:26
EIGEN_STATIC_ASSERT_LVALUE
#define EIGEN_STATIC_ASSERT_LVALUE(Derived)
Definition: StaticAssert.h:199
Eigen::Diagonal::coeff
EIGEN_DEVICE_FUNC CoeffReturnType coeff(Index row, Index) const
Definition: Diagonal.h:127
Eigen::Diagonal::coeffRef
EIGEN_DEVICE_FUNC Scalar & coeffRef(Index idx)
Definition: Diagonal.h:133
Eigen::Diagonal::data
const EIGEN_DEVICE_FUNC Scalar * data() const
Definition: Diagonal.h:111
EIGEN_INHERIT_ASSIGNMENT_OPERATORS
#define EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Derived)
Definition: Macros.h:842
EIGEN_SIZE_MIN_PREFER_FIXED
#define EIGEN_SIZE_MIN_PREFER_FIXED(a, b)
Definition: Macros.h:889
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::Diagonal::coeffRef
const EIGEN_DEVICE_FUNC Scalar & coeffRef(Index row, Index) const
Definition: Diagonal.h:121


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:45