Go to the documentation of this file.
10 #ifndef EIGEN_SPARSEMATRIXBASE_H
11 #define EIGEN_SPARSEMATRIXBASE_H
26 template<
typename Derived>
class SparseMatrixBase
27 :
public EigenBase<Derived>
54 template<
typename OtherDerived>
100 #ifndef EIGEN_PARSED_BY_DOXYGEN
116 #ifndef EIGEN_PARSED_BY_DOXYGEN
138 inline const Derived&
derived()
const {
return *
static_cast<const Derived*
>(
this); }
139 inline Derived&
derived() {
return *
static_cast<Derived*
>(
this); }
145 #endif // not EIGEN_PARSED_BY_DOXYGEN
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)
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)
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
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
195 template<
typename OtherDerived>
198 template<
typename OtherDerived>
201 inline Derived&
operator=(
const Derived& other);
205 template<
typename OtherDerived>
206 inline Derived&
assign(
const OtherDerived& other);
208 template<
typename OtherDerived>
215 typedef typename Derived::Nested Nested;
220 Nested nm(m.derived());
227 for ( ;
col<it.index(); ++
col)
229 s << it.value() <<
" ";
232 for ( ;
col<m.cols(); ++
col)
239 Nested nm(m.derived());
245 for ( ;
row<it.index(); ++
row)
246 s <<
"0" << std::endl;
247 s << it.value() << std::endl;
250 for ( ;
row<m.rows(); ++
row)
251 s <<
"0" << std::endl;
256 s << static_cast<const SparseMatrixBase<SparseMatrix<Scalar, RowMajorBit, StorageIndex> >&>(trans);
262 template<
typename OtherDerived>
264 template<
typename OtherDerived>
267 template<
typename OtherDerived>
269 template<
typename OtherDerived>
272 template<
typename OtherDerived>
274 template<
typename OtherDerived>
290 template<
typename OtherDerived>
295 template<
typename OtherDerived>
301 template<
typename OtherDerived>
friend
307 template<
typename OtherDerived>
312 template<
typename OtherDerived>
318 template<
typename OtherDerived>
friend
329 template<
typename OtherDerived>
338 template<
unsigned int UpLo>
inline
340 template<
unsigned int UpLo>
inline
370 template<
typename OtherDerived>
374 template<
typename OtherDerived>
377 {
return toDense().isApprox(other,prec); }
397 return internal::convert_index<StorageIndex>(idx);
400 template<
typename Dest>
void evalTo(Dest &)
const;
405 #endif // EIGEN_SPARSEMATRIXBASE_H
const EIGEN_STRONG_INLINE CwiseProductDenseReturnType< OtherDerived >::Type cwiseProduct(const MatrixBase< OtherDerived > &other) const
Matrix< Scalar, Dynamic, 1 > ScalarVector
const internal::eval< Derived >::type eval() const
SparseMatrixBase StorageBaseType
A versatible sparse matrix representation.
internal::conditional< NumTraits< Scalar >::IsComplex, CwiseUnaryOp< internal::scalar_conjugate_op< Scalar >, Eigen::Transpose< const Derived > >, Transpose< const Derived > >::type AdjointReturnType
Expression of a fixed-size or dynamic-size block.
Generic expression where a coefficient-wise binary operator is applied to two expressions.
Derived & operator-=(const SparseMatrixBase< OtherDerived > &other)
bool isApprox(const MatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
internal::conditional< _HasDirectAccess, const Scalar &, Scalar >::type CoeffReturnType
NumTraits< Scalar >::Real RealScalar
InnerVectorReturnType innerVector(Index outer)
const typedef SparseSelfAdjointView< const Derived, UpLo > Type
EIGEN_DEVICE_FUNC ColXpr col(Index i)
This is the const version of col().
Block< const Derived, IsRowMajor?1:Dynamic, IsRowMajor?Dynamic:1, true > ConstInnerVectorReturnType
const unsigned int RowMajorBit
Derived & operator+=(const SparseMatrixBase< OtherDerived > &other)
Block< Derived, Dynamic, Dynamic, true > InnerVectorsReturnType
bool isApprox(const SparseMatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
Derived & operator*=(const Scalar &other)
SparseSymmetricPermutationProduct< Derived, Upper|Lower > twistedBy(const PermutationMatrix< Dynamic, Dynamic, StorageIndex > &perm) const
Derived & operator=(const EigenBase< OtherDerived > &other)
void assignGeneric(const OtherDerived &other)
Matrix< StorageIndex, Dynamic, 1 > IndexVector
Derived & const_cast_derived() const
Determines whether the given binary operation of two numeric types is allowed and what the scalar ret...
#define EIGEN_SIZE_MAX(a, b)
RealScalar squaredNorm() const
DenseMatrixType toDense() const
TransposeReturnType transpose()
CwiseNullaryOp< internal::scalar_constant_op< Scalar >, Matrix< Scalar, Dynamic, Dynamic > > ConstantReturnType
Block< const Derived, Dynamic, Dynamic, true > ConstInnerVectorsReturnType
Expression of the transpose of a matrix.
const unsigned int DirectAccessBit
internal::traits< Derived >::StorageKind StorageKind
Generic expression of a matrix where all coefficients are defined by a functor.
SparseSelfAdjointView< Derived, UpLo > Type
const EIGEN_DEVICE_FUNC Derived & derived() const
static StorageIndex convert_index(const Index idx)
const TriangularView< const Derived, Mode > triangularView() const
Derived & operator/=(const Scalar &other)
internal::traits< Derived >::Scalar Scalar
Transpose< Derived > TransposeReturnType
void evalTo(Dest &) const
internal::packet_traits< Scalar >::type PacketScalar
const Product< Derived, OtherDerived > operator*(const MatrixBase< OtherDerived > &other) const
EIGEN_DEVICE_FUNC RowXpr row(Index i)
This is the const version of row(). */.
#define EIGEN_STRONG_INLINE
EigenBase< Derived > Base
Expression of the product of two arbitrary matrices or vectors.
const AdjointReturnType adjoint() const
Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime > DenseMatrixType
const Product< Derived, OtherDerived > operator*(const DiagonalBase< OtherDerived > &other) const
Block< Derived, IsRowMajor?1:Dynamic, IsRowMajor?Dynamic:1, true > InnerVectorReturnType
internal::add_const< Transpose< const Derived > >::type ConstTransposeReturnType
internal::add_const_on_value_type_if_arithmetic< typename internal::packet_traits< Scalar >::type >::type PacketReturnType
Derived & assign(const OtherDerived &other)
Generic expression where a coefficient-wise unary operator is applied to an expression.
internal::traits< Derived >::StorageIndex StorageIndex
const ConstTransposeReturnType transpose() const
friend std::ostream & operator<<(std::ostream &s, const SparseMatrixBase &m)
Expression of a dense or sparse matrix with zero or too small values removed.
ConstSelfAdjointViewReturnType< UpLo >::Type selfadjointView() const
Base class of any sparse matrices or sparse expressions.
const Derived & derived() const
NumTraits< Scalar >::Real RealScalar
Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
Base class for all dense matrices, vectors, and expressions.
SparseMatrix< Scalar, Flags &RowMajorBit ? RowMajor :ColMajor, StorageIndex > PlainObject
InnerVectorsReturnType innerVectors(Index outerStart, Index outerSize)
Matrix< Scalar, EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime), EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime)> SquareMatrixType
CwiseBinaryOp< internal::scalar_product_op< typename ScalarBinaryOpTraits< typename internal::traits< Derived >::Scalar, typename internal::traits< OtherDerived >::Scalar >::ReturnType >, const Derived, const OtherDerived > Type
const friend Product< OtherDerived, Derived > operator*(const MatrixBase< OtherDerived > &lhs, const SparseMatrixBase &rhs)
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Scalar dot(const MatrixBase< OtherDerived > &other) const
const friend Product< OtherDerived, Derived > operator*(const DiagonalBase< OtherDerived > &lhs, const SparseMatrixBase &rhs)
const SparseView< Derived > pruned(const Scalar &reference=Scalar(0), const RealScalar &epsilon=NumTraits< Scalar >::dummy_precision()) const
RealScalar blueNorm() const
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:22