SparseMatrixBase.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) 2008-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #ifndef EIGEN_SPARSEMATRIXBASE_H
11 #define EIGEN_SPARSEMATRIXBASE_H
12 
13 namespace Eigen {
14 
26 template<typename Derived> class SparseMatrixBase
27  : public EigenBase<Derived>
28 {
29  public:
30 
32 
36  typedef Scalar value_type;
37 
40 
44 
48 
50 
53 
54  template<typename OtherDerived>
55  Derived& operator=(const EigenBase<OtherDerived> &other);
56 
57  enum {
58 
80 
83 
96 
99 
100  #ifndef EIGEN_PARSED_BY_DOXYGEN
101  _HasDirectAccess = (int(Flags)&DirectAccessBit) ? 1 : 0 // workaround sunCC
102  #endif
103  };
104 
112 
113  // FIXME storage order do not match evaluator storage order
115 
116 #ifndef EIGEN_PARSED_BY_DOXYGEN
117 
124 
128 
131 
137 
138  inline const Derived& derived() const { return *static_cast<const Derived*>(this); }
139  inline Derived& derived() { return *static_cast<Derived*>(this); }
140  inline Derived& const_cast_derived() const
141  { return *static_cast<Derived*>(const_cast<SparseMatrixBase*>(this)); }
142 
144 
145 #endif // not EIGEN_PARSED_BY_DOXYGEN
146 
147 #define EIGEN_CURRENT_STORAGE_BASE_CLASS Eigen::SparseMatrixBase
148 #ifdef EIGEN_PARSED_BY_DOXYGEN
149 #define EIGEN_DOC_UNARY_ADDONS(METHOD,OP)
150 #define EIGEN_DOC_BLOCK_ADDONS_NOT_INNER_PANEL
151 #define EIGEN_DOC_BLOCK_ADDONS_INNER_PANEL_IF(COND)
152 #else
153 #define EIGEN_DOC_UNARY_ADDONS(X,Y)
154 #define EIGEN_DOC_BLOCK_ADDONS_NOT_INNER_PANEL
155 #define EIGEN_DOC_BLOCK_ADDONS_INNER_PANEL_IF(COND)
156 #endif
157 # include "../plugins/CommonCwiseUnaryOps.h"
158 # include "../plugins/CommonCwiseBinaryOps.h"
159 # include "../plugins/MatrixCwiseUnaryOps.h"
160 # include "../plugins/MatrixCwiseBinaryOps.h"
161 # include "../plugins/BlockMethods.h"
162 # ifdef EIGEN_SPARSEMATRIXBASE_PLUGIN
163 # include EIGEN_SPARSEMATRIXBASE_PLUGIN
164 # endif
165 #undef EIGEN_CURRENT_STORAGE_BASE_CLASS
166 #undef EIGEN_DOC_UNARY_ADDONS
167 #undef EIGEN_DOC_BLOCK_ADDONS_NOT_INNER_PANEL
168 #undef EIGEN_DOC_BLOCK_ADDONS_INNER_PANEL_IF
169 
171  inline Index rows() const { return derived().rows(); }
173  inline Index cols() const { return derived().cols(); }
176  inline Index size() const { return rows() * cols(); }
181  inline bool isVector() const { return rows()==1 || cols()==1; }
184  Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); }
187  Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); }
188 
189  bool isRValue() const { return m_isRValue; }
190  Derived& markAsRValue() { m_isRValue = true; return derived(); }
191 
192  SparseMatrixBase() : m_isRValue(false) { /* TODO check flags */ }
193 
194 
195  template<typename OtherDerived>
196  Derived& operator=(const ReturnByValue<OtherDerived>& other);
197 
198  template<typename OtherDerived>
199  inline Derived& operator=(const SparseMatrixBase<OtherDerived>& other);
200 
201  inline Derived& operator=(const Derived& other);
202 
203  protected:
204 
205  template<typename OtherDerived>
206  inline Derived& assign(const OtherDerived& other);
207 
208  template<typename OtherDerived>
209  inline void assignGeneric(const OtherDerived& other);
210 
211  public:
212 
213  friend std::ostream & operator << (std::ostream & s, const SparseMatrixBase& m)
214  {
215  typedef typename Derived::Nested Nested;
216  typedef typename internal::remove_all<Nested>::type NestedCleaned;
217 
218  if (Flags&RowMajorBit)
219  {
220  Nested nm(m.derived());
222  for (Index row=0; row<nm.outerSize(); ++row)
223  {
224  Index col = 0;
225  for (typename internal::evaluator<NestedCleaned>::InnerIterator it(thisEval, row); it; ++it)
226  {
227  for ( ; col<it.index(); ++col)
228  s << "0 ";
229  s << it.value() << " ";
230  ++col;
231  }
232  for ( ; col<m.cols(); ++col)
233  s << "0 ";
234  s << std::endl;
235  }
236  }
237  else
238  {
239  Nested nm(m.derived());
241  if (m.cols() == 1) {
242  Index row = 0;
243  for (typename internal::evaluator<NestedCleaned>::InnerIterator it(thisEval, 0); it; ++it)
244  {
245  for ( ; row<it.index(); ++row)
246  s << "0" << std::endl;
247  s << it.value() << std::endl;
248  ++row;
249  }
250  for ( ; row<m.rows(); ++row)
251  s << "0" << std::endl;
252  }
253  else
254  {
256  s << static_cast<const SparseMatrixBase<SparseMatrix<Scalar, RowMajorBit, StorageIndex> >&>(trans);
257  }
258  }
259  return s;
260  }
261 
262  template<typename OtherDerived>
263  Derived& operator+=(const SparseMatrixBase<OtherDerived>& other);
264  template<typename OtherDerived>
265  Derived& operator-=(const SparseMatrixBase<OtherDerived>& other);
266 
267  template<typename OtherDerived>
268  Derived& operator+=(const DiagonalBase<OtherDerived>& other);
269  template<typename OtherDerived>
270  Derived& operator-=(const DiagonalBase<OtherDerived>& other);
271 
272  template<typename OtherDerived>
273  Derived& operator+=(const EigenBase<OtherDerived> &other);
274  template<typename OtherDerived>
275  Derived& operator-=(const EigenBase<OtherDerived> &other);
276 
277  Derived& operator*=(const Scalar& other);
278  Derived& operator/=(const Scalar& other);
279 
280  template<typename OtherDerived> struct CwiseProductDenseReturnType {
284  >::ReturnType>,
285  const Derived,
286  const OtherDerived
287  > Type;
288  };
289 
290  template<typename OtherDerived>
292  cwiseProduct(const MatrixBase<OtherDerived> &other) const;
293 
294  // sparse * diagonal
295  template<typename OtherDerived>
298  { return Product<Derived,OtherDerived>(derived(), other.derived()); }
299 
300  // diagonal * sparse
301  template<typename OtherDerived> friend
304  { return Product<OtherDerived,Derived>(lhs.derived(), rhs.derived()); }
305 
306  // sparse * sparse
307  template<typename OtherDerived>
309  operator*(const SparseMatrixBase<OtherDerived> &other) const;
310 
311  // sparse * dense
312  template<typename OtherDerived>
315  { return Product<Derived,OtherDerived>(derived(), other.derived()); }
316 
317  // dense * sparse
318  template<typename OtherDerived> friend
321  { return Product<OtherDerived,Derived>(lhs.derived(), rhs.derived()); }
322 
325  {
327  }
328 
329  template<typename OtherDerived>
330  Derived& operator*=(const SparseMatrixBase<OtherDerived>& other);
331 
332  template<int Mode>
334 
335  template<unsigned int UpLo> struct SelfAdjointViewReturnType { typedef SparseSelfAdjointView<Derived, UpLo> Type; };
336  template<unsigned int UpLo> struct ConstSelfAdjointViewReturnType { typedef const SparseSelfAdjointView<const Derived, UpLo> Type; };
337 
338  template<unsigned int UpLo> inline
340  template<unsigned int UpLo> inline
342 
343  template<typename OtherDerived> Scalar dot(const MatrixBase<OtherDerived>& other) const;
344  template<typename OtherDerived> Scalar dot(const SparseMatrixBase<OtherDerived>& other) const;
345  RealScalar squaredNorm() const;
346  RealScalar norm() const;
347  RealScalar blueNorm() const;
348 
352 
353  // inner-vector
357  const ConstInnerVectorReturnType innerVector(Index outer) const;
358 
359  // set of inner-vectors
364 
366  {
367  return DenseMatrixType(derived());
368  }
369 
370  template<typename OtherDerived>
371  bool isApprox(const SparseMatrixBase<OtherDerived>& other,
372  const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
373 
374  template<typename OtherDerived>
376  const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const
377  { return toDense().isApprox(other,prec); }
378 
384  inline const typename internal::eval<Derived>::type eval() const
385  { return typename internal::eval<Derived>::type(derived()); }
386 
387  Scalar sum() const;
388 
389  inline const SparseView<Derived>
390  pruned(const Scalar& reference = Scalar(0), const RealScalar& epsilon = NumTraits<Scalar>::dummy_precision()) const;
391 
392  protected:
393 
395 
396  static inline StorageIndex convert_index(const Index idx) {
397  return internal::convert_index<StorageIndex>(idx);
398  }
399  private:
400  template<typename Dest> void evalTo(Dest &) const;
401 };
402 
403 } // end namespace Eigen
404 
405 #endif // EIGEN_SPARSEMATRIXBASE_H
Eigen::SparseMatrixBase::cwiseProduct
const EIGEN_STRONG_INLINE CwiseProductDenseReturnType< OtherDerived >::Type cwiseProduct(const MatrixBase< OtherDerived > &other) const
Eigen::SparseMatrixBase::isRValue
bool isRValue() const
Definition: SparseMatrixBase.h:189
Eigen::SparseMatrixBase::IsRowMajor
@ IsRowMajor
Definition: SparseMatrixBase.h:95
Eigen::SparseMatrixBase::Flags
@ Flags
Definition: SparseMatrixBase.h:90
Eigen::SparseMatrixBase::ScalarVector
Matrix< Scalar, Dynamic, 1 > ScalarVector
Definition: SparseMatrixBase.h:52
Eigen::SparseMatrixBase::eval
const internal::eval< Derived >::type eval() const
Definition: SparseMatrixBase.h:384
Eigen::SparseMatrixBase::StorageBaseType
SparseMatrixBase StorageBaseType
Definition: SparseMatrixBase.h:49
Eigen::internal::add_const_on_value_type_if_arithmetic
Definition: DenseCoeffsBase.h:16
Eigen
Definition: common.h:73
Eigen::SparseMatrix
A versatible sparse matrix representation.
Definition: SparseMatrix.h:96
Eigen::ReturnByValue
Definition: ReturnByValue.h:50
Eigen::SparseMatrixBase::AdjointReturnType
internal::conditional< NumTraits< Scalar >::IsComplex, CwiseUnaryOp< internal::scalar_conjugate_op< Scalar >, Eigen::Transpose< const Derived > >, Transpose< const Derived > >::type AdjointReturnType
Definition: SparseMatrixBase.h:109
Eigen::Block
Expression of a fixed-size or dynamic-size block.
Definition: Block.h:103
Eigen::SparseMatrixBase::MaxColsAtCompileTime
@ MaxColsAtCompileTime
Definition: SparseMatrixBase.h:79
s
RealScalar s
Definition: level1_cplx_impl.h:104
Eigen::CwiseBinaryOp
Generic expression where a coefficient-wise binary operator is applied to two expressions.
Definition: CwiseBinaryOp.h:77
Eigen::SparseMatrixBase::operator-=
Derived & operator-=(const SparseMatrixBase< OtherDerived > &other)
Eigen::SparseMatrixBase::isApprox
bool isApprox(const MatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
Definition: SparseMatrixBase.h:375
Eigen::SparseMatrixBase::CoeffReturnType
internal::conditional< _HasDirectAccess, const Scalar &, Scalar >::type CoeffReturnType
Definition: SparseMatrixBase.h:127
Eigen::SparseMatrixBase::size
Index size() const
Definition: SparseMatrixBase.h:176
RealScalar
NumTraits< Scalar >::Real RealScalar
Definition: common.h:85
Eigen::EigenBase
Definition: EigenBase.h:29
Eigen::SparseMatrixBase::SelfAdjointViewReturnType
Definition: SparseMatrixBase.h:335
Eigen::SparseMatrixBase::innerVector
InnerVectorReturnType innerVector(Index outer)
Definition: SparseBlock.h:333
Eigen::SparseMatrixBase::ConstSelfAdjointViewReturnType::Type
const typedef SparseSelfAdjointView< const Derived, UpLo > Type
Definition: SparseMatrixBase.h:336
col
EIGEN_DEVICE_FUNC ColXpr col(Index i)
This is the const version of col().
Definition: BlockMethods.h:838
Eigen::SparseMatrixBase::ConstInnerVectorReturnType
Block< const Derived, IsRowMajor?1:Dynamic, IsRowMajor?Dynamic:1, true > ConstInnerVectorReturnType
Definition: SparseMatrixBase.h:355
Eigen::RowMajorBit
const unsigned int RowMajorBit
Definition: Constants.h:61
Eigen::SparseMatrixBase::operator+=
Derived & operator+=(const SparseMatrixBase< OtherDerived > &other)
Eigen::SparseMatrixBase::rows
Index rows() const
Definition: SparseMatrixBase.h:171
Eigen::SparseMatrixBase::InnerVectorsReturnType
Block< Derived, Dynamic, Dynamic, true > InnerVectorsReturnType
Definition: SparseMatrixBase.h:360
Eigen::SparseMatrixBase::isApprox
bool isApprox(const SparseMatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
Definition: SparseFuzzy.h:17
Eigen::SparseMatrixBase::operator*=
Derived & operator*=(const Scalar &other)
Eigen::internal::packet_traits::type
T type
Definition: GenericPacketMath.h:98
Eigen::SparseMatrixBase::twistedBy
SparseSymmetricPermutationProduct< Derived, Upper|Lower > twistedBy(const PermutationMatrix< Dynamic, Dynamic, StorageIndex > &perm) const
Definition: SparseMatrixBase.h:324
Eigen::SparseMatrixBase::operator=
Derived & operator=(const EigenBase< OtherDerived > &other)
Definition: SparseAssign.h:17
Eigen::SparseMatrixBase::assignGeneric
void assignGeneric(const OtherDerived &other)
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Eigen::SparseMatrixBase::IndexVector
Matrix< StorageIndex, Dynamic, 1 > IndexVector
Definition: SparseMatrixBase.h:51
Eigen::SparseMatrixBase::const_cast_derived
Derived & const_cast_derived() const
Definition: SparseMatrixBase.h:140
Eigen::ScalarBinaryOpTraits
Determines whether the given binary operation of two numeric types is allowed and what the scalar ret...
Definition: XprHelper.h:766
Scalar
SCALAR Scalar
Definition: common.h:84
EIGEN_SIZE_MAX
#define EIGEN_SIZE_MAX(a, b)
Definition: Macros.h:897
Eigen::SparseMatrixBase::squaredNorm
RealScalar squaredNorm() const
Definition: SparseDot.h:77
ret
DenseIndex ret
Definition: level1_impl.h:59
Eigen::SparseMatrixBase::toDense
DenseMatrixType toDense() const
Definition: SparseMatrixBase.h:365
Eigen::SparseMatrixBase::transpose
TransposeReturnType transpose()
Definition: SparseMatrixBase.h:349
Eigen::SparseMatrixBase::ConstantReturnType
CwiseNullaryOp< internal::scalar_constant_op< Scalar >, Matrix< Scalar, Dynamic, Dynamic > > ConstantReturnType
Definition: SparseMatrixBase.h:130
Eigen::SparseMatrixBase::ConstInnerVectorsReturnType
Block< const Derived, Dynamic, Dynamic, true > ConstInnerVectorsReturnType
Definition: SparseMatrixBase.h:361
Eigen::internal::scalar_product_op
Definition: BinaryFunctors.h:76
Eigen::Transpose
Expression of the transpose of a matrix.
Definition: Transpose.h:52
Eigen::DirectAccessBit
const unsigned int DirectAccessBit
Definition: Constants.h:150
Eigen::SparseMatrixBase::StorageKind
internal::traits< Derived >::StorageKind StorageKind
Definition: SparseMatrixBase.h:39
Eigen::SparseMatrixBase::MaxSizeAtCompileTime
@ MaxSizeAtCompileTime
Definition: SparseMatrixBase.h:81
Eigen::CwiseNullaryOp
Generic expression of a matrix where all coefficients are defined by a functor.
Definition: CwiseNullaryOp.h:60
Eigen::SparseMatrixBase::SelfAdjointViewReturnType::Type
SparseSelfAdjointView< Derived, UpLo > Type
Definition: SparseMatrixBase.h:335
Eigen::DiagonalBase::derived
const EIGEN_DEVICE_FUNC Derived & derived() const
Definition: DiagonalMatrix.h:41
Eigen::SparseMatrixBase::value_type
Scalar value_type
Definition: SparseMatrixBase.h:36
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::SparseMatrixBase::convert_index
static StorageIndex convert_index(const Index idx)
Definition: SparseMatrixBase.h:396
Eigen::SparseMatrixBase::triangularView
const TriangularView< const Derived, Mode > triangularView() const
Definition: SparseTriangularView.h:182
Eigen::SparseMatrixBase::CwiseProductDenseReturnType
Definition: SparseMatrixBase.h:280
Eigen::SparseMatrixBase::isVector
bool isVector() const
Definition: SparseMatrixBase.h:181
Eigen::SparseMatrixBase::operator/=
Derived & operator/=(const Scalar &other)
Definition: SparseCwiseUnaryOp.h:136
Eigen::SparseMatrixBase::Scalar
internal::traits< Derived >::Scalar Scalar
Definition: SparseMatrixBase.h:31
Eigen::SparseMatrixBase::TransposeReturnType
Transpose< Derived > TransposeReturnType
Definition: SparseMatrixBase.h:110
Eigen::SparseMatrixBase::SizeAtCompileTime
@ SizeAtCompileTime
Definition: SparseMatrixBase.h:72
Eigen::SparseMatrixBase::innerSize
Index innerSize() const
Definition: SparseMatrixBase.h:187
Eigen::SparseMatrixBase::evalTo
void evalTo(Dest &) const
Eigen::SparseMatrixBase::PacketScalar
internal::packet_traits< Scalar >::type PacketScalar
Definition: SparseMatrixBase.h:38
Eigen::SparseMatrixBase::operator*
const Product< Derived, OtherDerived > operator*(const MatrixBase< OtherDerived > &other) const
Definition: SparseMatrixBase.h:314
Eigen::SparseMatrixBase::MaxRowsAtCompileTime
@ MaxRowsAtCompileTime
Definition: SparseMatrixBase.h:78
Eigen::SparseMatrixBase::cols
Index cols() const
Definition: SparseMatrixBase.h:173
Eigen::SparseMatrixBase::markAsRValue
Derived & markAsRValue()
Definition: SparseMatrixBase.h:190
Eigen::SparseMatrixBase::IsVectorAtCompileTime
@ IsVectorAtCompileTime
Definition: SparseMatrixBase.h:84
Eigen::SparseMatrixBase::ConstSelfAdjointViewReturnType
Definition: SparseMatrixBase.h:336
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::SparseMatrixBase::m_isRValue
bool m_isRValue
Definition: SparseMatrixBase.h:394
Eigen::internal::add_const
Definition: Meta.h:134
Eigen::SparseMatrixBase::Base
EigenBase< Derived > Base
Definition: SparseMatrixBase.h:143
Eigen::Product
Expression of the product of two arbitrary matrices or vectors.
Definition: Product.h:71
Eigen::internal::evaluator
Definition: CoreEvaluators.h:90
Eigen::SparseMatrixBase::adjoint
const AdjointReturnType adjoint() const
Definition: SparseMatrixBase.h:351
Eigen::SparseMatrixBase::InnerSizeAtCompileTime
@ InnerSizeAtCompileTime
Definition: SparseMatrixBase.h:97
int
return int(ret)+1
Eigen::SparseMatrixBase::DenseMatrixType
Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime > DenseMatrixType
Definition: SparseMatrixBase.h:133
Eigen::SparseMatrixBase::sum
Scalar sum() const
Definition: SparseRedux.h:17
Eigen::SparseSymmetricPermutationProduct
Definition: SparseSelfAdjointView.h:596
Eigen::SparseMatrixBase::outerSize
Index outerSize() const
Definition: SparseMatrixBase.h:184
Eigen::SparseMatrixBase::operator*
const Product< Derived, OtherDerived > operator*(const DiagonalBase< OtherDerived > &other) const
Definition: SparseMatrixBase.h:297
Eigen::SparseMatrixBase::InnerVectorReturnType
Block< Derived, IsRowMajor?1:Dynamic, IsRowMajor?Dynamic:1, true > InnerVectorReturnType
Definition: SparseMatrixBase.h:354
Eigen::SparseMatrixBase::ConstTransposeReturnType
internal::add_const< Transpose< const Derived > >::type ConstTransposeReturnType
Definition: SparseMatrixBase.h:111
Eigen::SparseMatrixBase::PacketReturnType
internal::add_const_on_value_type_if_arithmetic< typename internal::packet_traits< Scalar >::type >::type PacketReturnType
Definition: SparseMatrixBase.h:47
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::SparseMatrixBase::assign
Derived & assign(const OtherDerived &other)
Eigen::CwiseUnaryOp
Generic expression where a coefficient-wise unary operator is applied to an expression.
Definition: CwiseUnaryOp.h:55
Eigen::PermutationMatrix< Dynamic, Dynamic, StorageIndex >
Eigen::internal::conditional
Definition: Meta.h:58
Eigen::SparseMatrixBase::StorageIndex
internal::traits< Derived >::StorageIndex StorageIndex
Definition: SparseMatrixBase.h:43
Eigen::SparseMatrixBase::transpose
const ConstTransposeReturnType transpose() const
Definition: SparseMatrixBase.h:350
Eigen::SparseMatrixBase::RowsAtCompileTime
@ RowsAtCompileTime
Definition: SparseMatrixBase.h:59
Eigen::SparseMatrixBase::operator<<
friend std::ostream & operator<<(std::ostream &s, const SparseMatrixBase &m)
Definition: SparseMatrixBase.h:213
Eigen::SparseView
Expression of a dense or sparse matrix with zero or too small values removed.
Definition: ForwardDeclarations.h:126
Eigen::SparseMatrixBase::selfadjointView
ConstSelfAdjointViewReturnType< UpLo >::Type selfadjointView() const
Eigen::SparseMatrixBase
Base class of any sparse matrices or sparse expressions.
Definition: ForwardDeclarations.h:281
Eigen::SparseMatrixBase::derived
const Derived & derived() const
Definition: SparseMatrixBase.h:138
Eigen::SparseMatrixBase::RealScalar
NumTraits< Scalar >::Real RealScalar
Definition: SparseMatrixBase.h:123
Eigen::SparseMatrixBase::SparseMatrixBase
SparseMatrixBase()
Definition: SparseMatrixBase.h:192
Eigen::SparseSelfAdjointView
Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
Definition: SparseSelfAdjointView.h:43
Eigen::Matrix< StorageIndex, Dynamic, 1 >
Eigen::MatrixBase
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
Eigen::SparseMatrixBase::PlainObject
SparseMatrix< Scalar, Flags &RowMajorBit ? RowMajor :ColMajor, StorageIndex > PlainObject
Definition: SparseMatrixBase.h:114
Eigen::SparseMatrixBase::innerVectors
InnerVectorsReturnType innerVectors(Index outerStart, Index outerSize)
Definition: SparseBlock.h:348
Eigen::TriangularView< const Derived, Mode >
Eigen::SparseMatrixBase::SquareMatrixType
Matrix< Scalar, EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime), EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime)> SquareMatrixType
Definition: SparseMatrixBase.h:136
Eigen::SparseMatrixBase::CwiseProductDenseReturnType::Type
CwiseBinaryOp< internal::scalar_product_op< typename ScalarBinaryOpTraits< typename internal::traits< Derived >::Scalar, typename internal::traits< OtherDerived >::Scalar >::ReturnType >, const Derived, const OtherDerived > Type
Definition: SparseMatrixBase.h:287
Eigen::internal::eval
Definition: XprHelper.h:312
Eigen::SparseMatrixBase::ColsAtCompileTime
@ ColsAtCompileTime
Definition: SparseMatrixBase.h:65
Eigen::DiagonalBase
Definition: DiagonalMatrix.h:18
Eigen::SparseMatrixBase::operator*
const friend Product< OtherDerived, Derived > operator*(const MatrixBase< OtherDerived > &lhs, const SparseMatrixBase &rhs)
Definition: SparseMatrixBase.h:320
Eigen::NumTraits
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition: NumTraits.h:150
Eigen::SparseMatrixBase::dot
Scalar dot(const MatrixBase< OtherDerived > &other) const
Eigen::internal::size_at_compile_time
Definition: XprHelper.h:261
Eigen::SparseMatrixBase::operator*
const friend Product< OtherDerived, Derived > operator*(const DiagonalBase< OtherDerived > &lhs, const SparseMatrixBase &rhs)
Definition: SparseMatrixBase.h:303
Eigen::SparseMatrixBase::pruned
const SparseView< Derived > pruned(const Scalar &reference=Scalar(0), const RealScalar &epsilon=NumTraits< Scalar >::dummy_precision()) const
Definition: SparseView.h:245
Eigen::SparseMatrixBase::blueNorm
RealScalar blueNorm() const
Definition: SparseDot.h:92
Eigen::SparseMatrixBase::_HasDirectAccess
@ _HasDirectAccess
Definition: SparseMatrixBase.h:101
Eigen::SparseMatrixBase::derived
Derived & derived()
Definition: SparseMatrixBase.h:139
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::SparseMatrixBase::norm
RealScalar norm() const
Definition: SparseDot.h:84


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