DiagonalMatrix.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) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2007-2009 Benoit Jacob <jacob.benoit.1@gmail.com>
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_DIAGONALMATRIX_H
12 #define EIGEN_DIAGONALMATRIX_H
13 
14 namespace Eigen {
15 
16 #ifndef EIGEN_PARSED_BY_DOXYGEN
17 template<typename Derived>
18 class DiagonalBase : public EigenBase<Derived>
19 {
20  public:
26 
27  enum {
28  RowsAtCompileTime = DiagonalVectorType::SizeAtCompileTime,
29  ColsAtCompileTime = DiagonalVectorType::SizeAtCompileTime,
30  MaxRowsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
31  MaxColsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
34  };
35 
37  typedef DenseMatrixType DenseType;
39 
41  inline const Derived& derived() const { return *static_cast<const Derived*>(this); }
43  inline Derived& derived() { return *static_cast<Derived*>(this); }
44 
46  DenseMatrixType toDenseMatrix() const { return derived(); }
47 
49  inline const DiagonalVectorType& diagonal() const { return derived().diagonal(); }
51  inline DiagonalVectorType& diagonal() { return derived().diagonal(); }
52 
54  inline Index rows() const { return diagonal().size(); }
56  inline Index cols() const { return diagonal().size(); }
57 
58  template<typename MatrixDerived>
62  {
63  return Product<Derived, MatrixDerived, LazyProduct>(derived(),matrix.derived());
64  }
65 
68  inline const InverseReturnType
69  inverse() const
70  {
72  }
73 
76  operator*(const Scalar& scalar) const
77  {
79  }
82  operator*(const Scalar& scalar, const DiagonalBase& other)
83  {
85  }
86 
87  template<typename OtherDerived>
89  #ifdef EIGEN_PARSED_BY_DOXYGEN
90  inline unspecified_expression_type
91  #else
93  #endif
95  {
96  return (diagonal() + other.diagonal()).asDiagonal();
97  }
98 
99  template<typename OtherDerived>
101  #ifdef EIGEN_PARSED_BY_DOXYGEN
102  inline unspecified_expression_type
103  #else
105  #endif
107  {
108  return (diagonal() - other.diagonal()).asDiagonal();
109  }
110 };
111 
112 #endif
113 
127 namespace internal {
128 template<typename _Scalar, int SizeAtCompileTime, int MaxSizeAtCompileTime>
129 struct traits<DiagonalMatrix<_Scalar,SizeAtCompileTime,MaxSizeAtCompileTime> >
130  : traits<Matrix<_Scalar,SizeAtCompileTime,SizeAtCompileTime,0,MaxSizeAtCompileTime,MaxSizeAtCompileTime> >
131 {
134  enum {
136  };
137 };
138 }
139 template<typename _Scalar, int SizeAtCompileTime, int MaxSizeAtCompileTime>
141  : public DiagonalBase<DiagonalMatrix<_Scalar,SizeAtCompileTime,MaxSizeAtCompileTime> >
142 {
143  public:
144  #ifndef EIGEN_PARSED_BY_DOXYGEN
146  typedef const DiagonalMatrix& Nested;
147  typedef _Scalar Scalar;
150  #endif
151 
152  protected:
153 
154  DiagonalVectorType m_diagonal;
155 
156  public:
157 
160  inline const DiagonalVectorType& diagonal() const { return m_diagonal; }
163  inline DiagonalVectorType& diagonal() { return m_diagonal; }
164 
167  inline DiagonalMatrix() {}
168 
171  explicit inline DiagonalMatrix(Index dim) : m_diagonal(dim) {}
172 
175  inline DiagonalMatrix(const Scalar& x, const Scalar& y) : m_diagonal(x,y) {}
176 
179  inline DiagonalMatrix(const Scalar& x, const Scalar& y, const Scalar& z) : m_diagonal(x,y,z) {}
180 
181  #if EIGEN_HAS_CXX11
182 
192  template <typename... ArgTypes>
194  DiagonalMatrix(const Scalar& a0, const Scalar& a1, const Scalar& a2, const ArgTypes&... args)
195  : m_diagonal(a0, a1, a2, args...) {}
196 
201  explicit EIGEN_STRONG_INLINE DiagonalMatrix(const std::initializer_list<std::initializer_list<Scalar>>& list)
202  : m_diagonal(list) {}
203  #endif // EIGEN_HAS_CXX11
204 
206  template<typename OtherDerived>
208  inline DiagonalMatrix(const DiagonalBase<OtherDerived>& other) : m_diagonal(other.diagonal()) {}
209 
210  #ifndef EIGEN_PARSED_BY_DOXYGEN
211 
212  inline DiagonalMatrix(const DiagonalMatrix& other) : m_diagonal(other.diagonal()) {}
213  #endif
214 
216  template<typename OtherDerived>
218  explicit inline DiagonalMatrix(const MatrixBase<OtherDerived>& other) : m_diagonal(other)
219  {}
220 
222  template<typename OtherDerived>
225  {
226  m_diagonal = other.diagonal();
227  return *this;
228  }
229 
230  #ifndef EIGEN_PARSED_BY_DOXYGEN
231 
235  DiagonalMatrix& operator=(const DiagonalMatrix& other)
236  {
237  m_diagonal = other.diagonal();
238  return *this;
239  }
240  #endif
241 
244  inline void resize(Index size) { m_diagonal.resize(size); }
247  inline void setZero() { m_diagonal.setZero(); }
250  inline void setZero(Index size) { m_diagonal.setZero(size); }
253  inline void setIdentity() { m_diagonal.setOnes(); }
256  inline void setIdentity(Index size) { m_diagonal.setOnes(size); }
257 };
258 
273 namespace internal {
274 template<typename _DiagonalVectorType>
275 struct traits<DiagonalWrapper<_DiagonalVectorType> >
276 {
277  typedef _DiagonalVectorType DiagonalVectorType;
279  typedef typename DiagonalVectorType::StorageIndex StorageIndex;
282  enum {
283  RowsAtCompileTime = DiagonalVectorType::SizeAtCompileTime,
284  ColsAtCompileTime = DiagonalVectorType::SizeAtCompileTime,
285  MaxRowsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
286  MaxColsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
288  };
289 };
290 }
291 
292 template<typename _DiagonalVectorType>
294  : public DiagonalBase<DiagonalWrapper<_DiagonalVectorType> >, internal::no_assignment_operator
295 {
296  public:
297  #ifndef EIGEN_PARSED_BY_DOXYGEN
298  typedef _DiagonalVectorType DiagonalVectorType;
300  #endif
301 
304  explicit inline DiagonalWrapper(DiagonalVectorType& a_diagonal) : m_diagonal(a_diagonal) {}
305 
308  const DiagonalVectorType& diagonal() const { return m_diagonal; }
309 
310  protected:
311  typename DiagonalVectorType::Nested m_diagonal;
312 };
313 
323 template<typename Derived>
326 {
328 }
329 
338 template<typename Derived>
340 {
341  if(cols() != rows()) return false;
342  RealScalar maxAbsOnDiagonal = static_cast<RealScalar>(-1);
343  for(Index j = 0; j < cols(); ++j)
344  {
345  RealScalar absOnDiagonal = numext::abs(coeff(j,j));
346  if(absOnDiagonal > maxAbsOnDiagonal) maxAbsOnDiagonal = absOnDiagonal;
347  }
348  for(Index j = 0; j < cols(); ++j)
349  for(Index i = 0; i < j; ++i)
350  {
351  if(!internal::isMuchSmallerThan(coeff(i, j), maxAbsOnDiagonal, prec)) return false;
352  if(!internal::isMuchSmallerThan(coeff(j, i), maxAbsOnDiagonal, prec)) return false;
353  }
354  return true;
355 }
356 
357 namespace internal {
358 
359 template<> struct storage_kind_to_shape<DiagonalShape> { typedef DiagonalShape Shape; };
360 
361 struct Diagonal2Dense {};
362 
364 
365 // Diagonal matrix to Dense assignment
366 template< typename DstXprType, typename SrcXprType, typename Functor>
367 struct Assignment<DstXprType, SrcXprType, Functor, Diagonal2Dense>
368 {
369  static void run(DstXprType &dst, const SrcXprType &src, const internal::assign_op<typename DstXprType::Scalar,typename SrcXprType::Scalar> &/*func*/)
370  {
371  Index dstRows = src.rows();
372  Index dstCols = src.cols();
373  if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
374  dst.resize(dstRows, dstCols);
375 
376  dst.setZero();
377  dst.diagonal() = src.diagonal();
378  }
379 
380  static void run(DstXprType &dst, const SrcXprType &src, const internal::add_assign_op<typename DstXprType::Scalar,typename SrcXprType::Scalar> &/*func*/)
381  { dst.diagonal() += src.diagonal(); }
382 
383  static void run(DstXprType &dst, const SrcXprType &src, const internal::sub_assign_op<typename DstXprType::Scalar,typename SrcXprType::Scalar> &/*func*/)
384  { dst.diagonal() -= src.diagonal(); }
385 };
386 
387 } // namespace internal
388 
389 } // end namespace Eigen
390 
391 #endif // EIGEN_DIAGONALMATRIX_H
Point2 a1
Definition: testPose2.cpp:769
EIGEN_DEVICE_FUNC Index cols() const
DiagonalMatrix< Scalar, DiagonalVectorType::SizeAtCompileTime, DiagonalVectorType::MaxSizeAtCompileTime > PlainObject
EIGEN_DEVICE_FUNC const Product< Derived, MatrixDerived, LazyProduct > operator*(const MatrixBase< MatrixDerived > &matrix) const
EIGEN_DEVICE_FUNC const DiagonalVectorType & diagonal() const
SCALAR Scalar
Definition: bench_gemm.cpp:46
#define EIGEN_STRONG_INLINE
Definition: Macros.h:917
EIGEN_DEVICE_FUNC bool isMuchSmallerThan(const Scalar &x, const OtherScalar &y, const typename NumTraits< Scalar >::Real &precision=NumTraits< Scalar >::dummy_precision())
Expression of the product of two arbitrary matrices or vectors.
Definition: Product.h:71
Scalar * y
DenseMatrixType DenseType
DiagonalVectorType::Scalar Scalar
EIGEN_DEVICE_FUNC const DiagonalVectorType & diagonal() const
EIGEN_DEVICE_FUNC friend const DiagonalWrapper< const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar, DiagonalVectorType, product) > operator*(const Scalar &scalar, const DiagonalBase &other)
EIGEN_DEVICE_FUNC Derived & derived()
static void run(DstXprType &dst, const SrcXprType &src, const internal::assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
Definition: pytypes.h:2012
const unsigned int LvalueBit
Definition: Constants.h:144
Represents a diagonal matrix with its storage.
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
EIGEN_DEVICE_FUNC const InverseReturnType inverse() const
EIGEN_DEVICE_FUNC DiagonalMatrix()
EIGEN_DEVICE_FUNC const DiagonalVectorType & diagonal() const
EIGEN_DEVICE_FUNC DiagonalMatrix(const Scalar &x, const Scalar &y)
Eigen::Index Index
The interface type of indices.
Definition: EigenBase.h:39
EIGEN_DEVICE_FUNC Index rows() const
internal::traits< Derived >::DiagonalVectorType DiagonalVectorType
static void run(DstXprType &dst, const SrcXprType &src, const internal::sub_assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
EIGEN_DEVICE_FUNC const DiagonalWrapper< const EIGEN_CWISE_BINARY_RETURN_TYPE(DiagonalVectorType, typename OtherDerived::DiagonalVectorType, difference) > operator-(const DiagonalBase< OtherDerived > &other) const
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE internal::enable_if< NumTraits< T >::IsSigned||NumTraits< T >::IsComplex, typename NumTraits< T >::Real >::type abs(const T &x)
EIGEN_DEVICE_FUNC DiagonalMatrix(Index dim)
internal::traits< DiagonalMatrix >::StorageIndex StorageIndex
EIGEN_DEVICE_FUNC void setIdentity(Index size)
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index size() const EIGEN_NOEXCEPT
Definition: EigenBase.h:67
DiagonalWrapper< const CwiseUnaryOp< internal::scalar_inverse_op< Scalar >, const DiagonalVectorType > > InverseReturnType
DiagonalVectorType m_diagonal
EIGEN_DEVICE_FUNC DiagonalMatrix & operator=(const DiagonalMatrix &other)
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:74
internal::traits< DiagonalMatrix >::StorageKind StorageKind
bool isDiagonal(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
const DiagonalMatrix & Nested
EIGEN_DEVICE_FUNC DiagonalMatrix & operator=(const DiagonalBase< OtherDerived > &other)
DiagonalVectorType::RealScalar RealScalar
EIGEN_DEVICE_FUNC void resize(Index size)
EIGEN_DEVICE_FUNC const CwiseInverseReturnType cwiseInverse() const
NumTraits< Scalar >::Real RealScalar
Definition: bench_gemm.cpp:47
DiagonalWrapper Nested
Definition: pytypes.h:1979
EIGEN_DEVICE_FUNC const DiagonalWrapper< const Derived > asDiagonal() const
Point2 a2
Definition: testPose2.cpp:770
Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTime > DenseMatrixType
#define EIGEN_DEVICE_FUNC
Definition: Macros.h:976
internal::traits< Derived >::StorageKind StorageKind
EIGEN_DEVICE_FUNC DiagonalVectorType & diagonal()
NumTraits< Scalar >::Real RealScalar
Definition: DenseBase.h:73
EIGEN_DEVICE_FUNC DiagonalVectorType & diagonal()
static void run(DstXprType &dst, const SrcXprType &src, const internal::add_assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
EIGEN_DEVICE_FUNC const DiagonalWrapper< const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DiagonalVectorType, Scalar, product) > operator*(const Scalar &scalar) const
_DiagonalVectorType DiagonalVectorType
DiagonalVectorType::Nested m_diagonal
Expression of a diagonal matrix.
internal::traits< DiagonalMatrix >::DiagonalVectorType DiagonalVectorType
EIGEN_DEVICE_FUNC DiagonalMatrix(const Scalar &x, const Scalar &y, const Scalar &z)
EIGEN_DEVICE_FUNC DenseMatrixType toDenseMatrix() const
EIGEN_DEVICE_FUNC void setIdentity()
EIGEN_DEVICE_FUNC DiagonalMatrix(const MatrixBase< OtherDerived > &other)
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
The matrix class, also used for vectors and row-vectors.
EIGEN_DEVICE_FUNC const DiagonalWrapper< const EIGEN_CWISE_BINARY_RETURN_TYPE(DiagonalVectorType, typename OtherDerived::DiagonalVectorType, sum) > operator+(const DiagonalBase< OtherDerived > &other) const
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
EIGEN_DEVICE_FUNC DiagonalMatrix(const DiagonalBase< OtherDerived > &other)
mxArray * scalar(mxClassID classid)
Definition: matlab.h:82
internal::traits< Derived >::StorageIndex StorageIndex
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
std::ptrdiff_t j
EIGEN_DEVICE_FUNC void setZero(Index size)
EIGEN_DEVICE_FUNC DiagonalWrapper(DiagonalVectorType &a_diagonal)
DiagonalMatrix(const DiagonalMatrix &other)
EIGEN_DEVICE_FUNC const Derived & derived() const
Matrix< _Scalar, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1 > DiagonalVectorType
const unsigned int NoPreferredStorageOrderBit
Definition: Constants.h:178
EIGEN_DEVICE_FUNC void setZero()


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:34:10