Shapeworks Studio
2.1
Shape analysis software suite
|
Base class of any sparse matrices or sparse expressions. More...
#include <SparseMatrixBase.h>
Classes | |
struct | ConstFixedSegmentReturnType |
struct | ConstNColsBlockXpr |
struct | ConstNRowsBlockXpr |
struct | FixedSegmentReturnType |
struct | NColsBlockXpr |
struct | NRowsBlockXpr |
Public Types | |
enum | { RowsAtCompileTime = internal::traits<Derived>::RowsAtCompileTime, ColsAtCompileTime = internal::traits<Derived>::ColsAtCompileTime, SizeAtCompileTime, MaxRowsAtCompileTime = RowsAtCompileTime, MaxColsAtCompileTime = ColsAtCompileTime, MaxSizeAtCompileTime, IsVectorAtCompileTime = RowsAtCompileTime == 1 || ColsAtCompileTime == 1, Flags = internal::traits<Derived>::Flags, CoeffReadCost = internal::traits<Derived>::CoeffReadCost, IsRowMajor = Flags&RowMajorBit ? 1 : 0, InnerSizeAtCompileTime, _HasDirectAccess = (int(Flags)&DirectAccessBit) ? 1 : 0 } |
typedef internal::traits< Derived >::Scalar | Scalar |
typedef internal::packet_traits< Scalar >::type | PacketScalar |
typedef internal::traits< Derived >::StorageKind | StorageKind |
typedef internal::traits< Derived >::Index | Index |
typedef internal::add_const_on_value_type_if_arithmetic< typename internal::packet_traits< Scalar >::type >::type | PacketReturnType |
typedef SparseMatrixBase | StorageBaseType |
typedef EigenBase< Derived > | Base |
typedef internal::conditional< NumTraits< Scalar >::IsComplex, CwiseUnaryOp< internal::scalar_conjugate_op< Scalar >, Eigen::Transpose< const Derived > >, Transpose< const Derived > >::type | AdjointReturnType |
typedef SparseMatrix< Scalar, Flags &RowMajorBit?RowMajor:ColMajor, Index > | PlainObject |
typedef NumTraits< Scalar >::Real | RealScalar |
typedef internal::conditional< _HasDirectAccess, const Scalar &, Scalar >::type | CoeffReturnType |
typedef CwiseNullaryOp< internal::scalar_constant_op< Scalar >, Matrix< Scalar, Dynamic, Dynamic > > | ConstantReturnType |
typedef Matrix< Scalar, EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime), EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime)> | SquareMatrixType |
typedef CwiseUnaryOp< internal::scalar_multiple_op< Scalar >, const Derived > | ScalarMultipleReturnType |
typedef CwiseUnaryOp< internal::scalar_quotient1_op< Scalar >, const Derived > | ScalarQuotient1ReturnType |
typedef internal::conditional< NumTraits< Scalar >::IsComplex, const CwiseUnaryOp< internal::scalar_conjugate_op< Scalar >, const Derived >, const Derived & >::type | ConjugateReturnType |
typedef internal::conditional< NumTraits< Scalar >::IsComplex, const CwiseUnaryOp< internal::scalar_real_op< Scalar >, const Derived >, const Derived & >::type | RealReturnType |
typedef internal::conditional< NumTraits< Scalar >::IsComplex, CwiseUnaryView< internal::scalar_real_ref_op< Scalar >, Derived >, Derived & >::type | NonConstRealReturnType |
typedef CwiseUnaryOp< internal::scalar_imag_op< Scalar >, const Derived > | ImagReturnType |
typedef CwiseUnaryView< internal::scalar_imag_ref_op< Scalar >, Derived > | NonConstImagReturnType |
typedef Block< Derived, internal::traits< Derived >::RowsAtCompileTime, 1,!IsRowMajor > | ColXpr |
typedef const Block< const Derived, internal::traits< Derived >::RowsAtCompileTime, 1,!IsRowMajor > | ConstColXpr |
typedef Block< Derived, 1, internal::traits< Derived >::ColsAtCompileTime, IsRowMajor > | RowXpr |
typedef const Block< const Derived, 1, internal::traits< Derived >::ColsAtCompileTime, IsRowMajor > | ConstRowXpr |
typedef Block< Derived, internal::traits< Derived >::RowsAtCompileTime, Dynamic,!IsRowMajor > | ColsBlockXpr |
typedef const Block< const Derived, internal::traits< Derived >::RowsAtCompileTime, Dynamic,!IsRowMajor > | ConstColsBlockXpr |
typedef Block< Derived, Dynamic, internal::traits< Derived >::ColsAtCompileTime, IsRowMajor > | RowsBlockXpr |
typedef const Block< const Derived, Dynamic, internal::traits< Derived >::ColsAtCompileTime, IsRowMajor > | ConstRowsBlockXpr |
typedef VectorBlock< Derived > | SegmentReturnType |
typedef const VectorBlock< const Derived > | ConstSegmentReturnType |
typedef Block< Derived, IsRowMajor?1:Dynamic, IsRowMajor?Dynamic:1, true > | InnerVectorReturnType |
typedef Block< const Derived, IsRowMajor?1:Dynamic, IsRowMajor?Dynamic:1, true > | ConstInnerVectorReturnType |
Public Types inherited from Eigen::EigenBase< Derived > | |
typedef internal::traits< Derived >::StorageKind | StorageKind |
typedef internal::traits< Derived >::Index | Index |
Public Member Functions | |
template<typename OtherDerived > | |
Derived & | operator= (const EigenBase< OtherDerived > &other) |
const Derived & | derived () const |
Derived & | derived () |
Derived & | const_cast_derived () const |
const CwiseUnaryOp< internal::scalar_opposite_op< typename internal::traits< Derived >::Scalar >, const Derived > | operator- () const |
const ScalarMultipleReturnType | operator* (const Scalar &scalar) const |
const CwiseUnaryOp< internal::scalar_quotient1_op< typename internal::traits< Derived >::Scalar >, const Derived > | operator/ (const Scalar &scalar) const |
const CwiseUnaryOp< internal::scalar_multiple2_op< Scalar, std::complex< Scalar > >, const Derived > | operator* (const std::complex< Scalar > &scalar) const |
template<typename NewType > | |
internal::cast_return_type< Derived, const CwiseUnaryOp< internal::scalar_cast_op< typename internal::traits< Derived >::Scalar, NewType >, const Derived > >::type | cast () const |
ConjugateReturnType | conjugate () const |
RealReturnType | real () const |
const ImagReturnType | imag () const |
template<typename CustomUnaryOp > | |
const CwiseUnaryOp< CustomUnaryOp, const Derived > | unaryExpr (const CustomUnaryOp &func=CustomUnaryOp()) const |
Apply a unary operator coefficient-wise. More... | |
template<typename CustomViewOp > | |
const CwiseUnaryView< CustomViewOp, const Derived > | unaryViewExpr (const CustomViewOp &func=CustomViewOp()) const |
NonConstRealReturnType | real () |
NonConstImagReturnType | imag () |
template<typename CustomBinaryOp , typename OtherDerived > | |
EIGEN_STRONG_INLINE const CwiseBinaryOp< CustomBinaryOp, const Derived, const OtherDerived > | binaryExpr (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other, const CustomBinaryOp &func=CustomBinaryOp()) const |
EIGEN_STRONG_INLINE const CwiseUnaryOp< internal::scalar_abs_op< Scalar >, const Derived > | cwiseAbs () const |
EIGEN_STRONG_INLINE const CwiseUnaryOp< internal::scalar_abs2_op< Scalar >, const Derived > | cwiseAbs2 () const |
const CwiseUnaryOp< internal::scalar_sqrt_op< Scalar >, const Derived > | cwiseSqrt () const |
const CwiseUnaryOp< internal::scalar_inverse_op< Scalar >, const Derived > | cwiseInverse () const |
const CwiseUnaryOp< std::binder1st< std::equal_to< Scalar > >, const Derived > | cwiseEqual (const Scalar &s) const |
template<typename OtherDerived > | |
EIGEN_STRONG_INLINE const | EIGEN_CWISE_PRODUCT_RETURN_TYPE (Derived, OtherDerived) cwiseProduct(const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
template<typename OtherDerived > | |
const CwiseBinaryOp< std::equal_to< Scalar >, const Derived, const OtherDerived > | cwiseEqual (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
template<typename OtherDerived > | |
const CwiseBinaryOp< std::not_equal_to< Scalar >, const Derived, const OtherDerived > | cwiseNotEqual (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
template<typename OtherDerived > | |
EIGEN_STRONG_INLINE const CwiseBinaryOp< internal::scalar_min_op< Scalar >, const Derived, const OtherDerived > | cwiseMin (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
EIGEN_STRONG_INLINE const CwiseBinaryOp< internal::scalar_min_op< Scalar >, const Derived, const ConstantReturnType > | cwiseMin (const Scalar &other) const |
template<typename OtherDerived > | |
EIGEN_STRONG_INLINE const CwiseBinaryOp< internal::scalar_max_op< Scalar >, const Derived, const OtherDerived > | cwiseMax (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
EIGEN_STRONG_INLINE const CwiseBinaryOp< internal::scalar_max_op< Scalar >, const Derived, const ConstantReturnType > | cwiseMax (const Scalar &other) const |
template<typename OtherDerived > | |
EIGEN_STRONG_INLINE const CwiseBinaryOp< internal::scalar_quotient_op< Scalar >, const Derived, const OtherDerived > | cwiseQuotient (const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const |
Block< Derived > | block (Index startRow, Index startCol, Index blockRows, Index blockCols) |
const Block< const Derived > | block (Index startRow, Index startCol, Index blockRows, Index blockCols) const |
Block< Derived > | topRightCorner (Index cRows, Index cCols) |
const Block< const Derived > | topRightCorner (Index cRows, Index cCols) const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | topRightCorner () |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | topRightCorner () const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | topRightCorner (Index cRows, Index cCols) |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | topRightCorner (Index cRows, Index cCols) const |
Block< Derived > | topLeftCorner (Index cRows, Index cCols) |
const Block< const Derived > | topLeftCorner (Index cRows, Index cCols) const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | topLeftCorner () |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | topLeftCorner () const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | topLeftCorner (Index cRows, Index cCols) |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | topLeftCorner (Index cRows, Index cCols) const |
Block< Derived > | bottomRightCorner (Index cRows, Index cCols) |
const Block< const Derived > | bottomRightCorner (Index cRows, Index cCols) const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | bottomRightCorner () |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | bottomRightCorner () const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | bottomRightCorner (Index cRows, Index cCols) |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | bottomRightCorner (Index cRows, Index cCols) const |
Block< Derived > | bottomLeftCorner (Index cRows, Index cCols) |
const Block< const Derived > | bottomLeftCorner (Index cRows, Index cCols) const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | bottomLeftCorner () |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | bottomLeftCorner () const |
template<int CRows, int CCols> | |
Block< Derived, CRows, CCols > | bottomLeftCorner (Index cRows, Index cCols) |
template<int CRows, int CCols> | |
const Block< const Derived, CRows, CCols > | bottomLeftCorner (Index cRows, Index cCols) const |
RowsBlockXpr | topRows (Index n) |
ConstRowsBlockXpr | topRows (Index n) const |
template<int N> | |
NRowsBlockXpr< N >::Type | topRows () |
template<int N> | |
ConstNRowsBlockXpr< N >::Type | topRows () const |
RowsBlockXpr | bottomRows (Index n) |
ConstRowsBlockXpr | bottomRows (Index n) const |
template<int N> | |
NRowsBlockXpr< N >::Type | bottomRows () |
template<int N> | |
ConstNRowsBlockXpr< N >::Type | bottomRows () const |
RowsBlockXpr | middleRows (Index startRow, Index numRows) |
ConstRowsBlockXpr | middleRows (Index startRow, Index numRows) const |
template<int N> | |
NRowsBlockXpr< N >::Type | middleRows (Index startRow) |
template<int N> | |
ConstNRowsBlockXpr< N >::Type | middleRows (Index startRow) const |
ColsBlockXpr | leftCols (Index n) |
ConstColsBlockXpr | leftCols (Index n) const |
template<int N> | |
NColsBlockXpr< N >::Type | leftCols () |
template<int N> | |
ConstNColsBlockXpr< N >::Type | leftCols () const |
ColsBlockXpr | rightCols (Index n) |
ConstColsBlockXpr | rightCols (Index n) const |
template<int N> | |
NColsBlockXpr< N >::Type | rightCols () |
template<int N> | |
ConstNColsBlockXpr< N >::Type | rightCols () const |
ColsBlockXpr | middleCols (Index startCol, Index numCols) |
ConstColsBlockXpr | middleCols (Index startCol, Index numCols) const |
template<int N> | |
NColsBlockXpr< N >::Type | middleCols (Index startCol) |
template<int N> | |
ConstNColsBlockXpr< N >::Type | middleCols (Index startCol) const |
template<int BlockRows, int BlockCols> | |
Block< Derived, BlockRows, BlockCols > | block (Index startRow, Index startCol) |
template<int BlockRows, int BlockCols> | |
const Block< const Derived, BlockRows, BlockCols > | block (Index startRow, Index startCol) const |
template<int BlockRows, int BlockCols> | |
Block< Derived, BlockRows, BlockCols > | block (Index startRow, Index startCol, Index blockRows, Index blockCols) |
template<int BlockRows, int BlockCols> | |
const Block< const Derived, BlockRows, BlockCols > | block (Index startRow, Index startCol, Index blockRows, Index blockCols) const |
ColXpr | col (Index i) |
ConstColXpr | col (Index i) const |
RowXpr | row (Index i) |
ConstRowXpr | row (Index i) const |
SegmentReturnType | segment (Index start, Index vecSize) |
ConstSegmentReturnType | segment (Index start, Index vecSize) const |
SegmentReturnType | head (Index vecSize) |
ConstSegmentReturnType | head (Index vecSize) const |
SegmentReturnType | tail (Index vecSize) |
ConstSegmentReturnType | tail (Index vecSize) const |
template<int Size> | |
FixedSegmentReturnType< Size >::Type | segment (Index start) |
template<int Size> | |
ConstFixedSegmentReturnType< Size >::Type | segment (Index start) const |
template<int Size> | |
FixedSegmentReturnType< Size >::Type | head () |
template<int Size> | |
ConstFixedSegmentReturnType< Size >::Type | head () const |
template<int Size> | |
FixedSegmentReturnType< Size >::Type | tail () |
template<int Size> | |
ConstFixedSegmentReturnType< Size >::Type | tail () const |
Index | rows () const |
Index | cols () const |
Index | size () const |
Index | nonZeros () const |
bool | isVector () const |
Index | outerSize () const |
Index | innerSize () const |
bool | isRValue () const |
Derived & | markAsRValue () |
template<typename OtherDerived > | |
Derived & | operator= (const ReturnByValue< OtherDerived > &other) |
template<typename OtherDerived > | |
Derived & | operator= (const SparseMatrixBase< OtherDerived > &other) |
Derived & | operator= (const Derived &other) |
template<typename Lhs , typename Rhs > | |
Derived & | operator= (const SparseSparseProduct< Lhs, Rhs > &product) |
template<typename OtherDerived > | |
Derived & | operator+= (const SparseMatrixBase< OtherDerived > &other) |
template<typename OtherDerived > | |
Derived & | operator-= (const SparseMatrixBase< OtherDerived > &other) |
Derived & | operator*= (const Scalar &other) |
Derived & | operator/= (const Scalar &other) |
template<typename OtherDerived > | |
EIGEN_STRONG_INLINE const EIGEN_SPARSE_CWISE_PRODUCT_RETURN_TYPE | cwiseProduct (const MatrixBase< OtherDerived > &other) const |
template<typename OtherDerived > | |
const SparseSparseProductReturnType< Derived, OtherDerived >::Type | operator* (const SparseMatrixBase< OtherDerived > &other) const |
template<typename OtherDerived > | |
const SparseDiagonalProduct< Derived, OtherDerived > | operator* (const DiagonalBase< OtherDerived > &other) const |
template<typename OtherDerived > | |
const SparseDenseProductReturnType< Derived, OtherDerived >::Type | operator* (const MatrixBase< OtherDerived > &other) const |
SparseSymmetricPermutationProduct< Derived, Upper|Lower > | twistedBy (const PermutationMatrix< Dynamic, Dynamic, Index > &perm) const |
template<typename OtherDerived > | |
Derived & | operator*= (const SparseMatrixBase< OtherDerived > &other) |
template<int Mode> | |
const SparseTriangularView< Derived, Mode > | triangularView () const |
template<unsigned int UpLo> | |
const SparseSelfAdjointView< Derived, UpLo > | selfadjointView () const |
template<unsigned int UpLo> | |
SparseSelfAdjointView< Derived, UpLo > | selfadjointView () |
template<typename OtherDerived > | |
Scalar | dot (const MatrixBase< OtherDerived > &other) const |
template<typename OtherDerived > | |
Scalar | dot (const SparseMatrixBase< OtherDerived > &other) const |
RealScalar | squaredNorm () const |
RealScalar | norm () const |
RealScalar | blueNorm () const |
Transpose< Derived > | transpose () |
const Transpose< const Derived > | transpose () const |
const AdjointReturnType | adjoint () const |
InnerVectorReturnType | innerVector (Index outer) |
const ConstInnerVectorReturnType | innerVector (Index outer) const |
Block< Derived, Dynamic, Dynamic, true > | innerVectors (Index outerStart, Index outerSize) |
const Block< const Derived, Dynamic, Dynamic, true > | innerVectors (Index outerStart, Index outerSize) const |
template<typename DenseDerived > | |
void | evalTo (MatrixBase< DenseDerived > &dst) const |
Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime > | toDense () const |
template<typename OtherDerived > | |
bool | isApprox (const SparseMatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
template<typename OtherDerived > | |
bool | isApprox (const MatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
const internal::eval< Derived >::type | eval () const |
Scalar | sum () const |
template<typename OtherDerived > | |
EIGEN_STRONG_INLINE Derived & | operator-= (const SparseMatrixBase< OtherDerived > &other) |
template<typename OtherDerived > | |
EIGEN_STRONG_INLINE Derived & | operator+= (const SparseMatrixBase< OtherDerived > &other) |
template<typename OtherDerived > | |
internal::traits< Derived >::Scalar | dot (const MatrixBase< OtherDerived > &other) const |
template<typename OtherDerived > | |
internal::traits< Derived >::Scalar | dot (const SparseMatrixBase< OtherDerived > &other) const |
Public Member Functions inherited from Eigen::EigenBase< Derived > | |
Derived & | derived () |
const Derived & | derived () const |
Derived & | const_cast_derived () const |
const Derived & | const_derived () const |
Index | rows () const |
Index | cols () const |
Index | size () const |
template<typename Dest > | |
void | evalTo (Dest &dst) const |
template<typename Dest > | |
void | addTo (Dest &dst) const |
template<typename Dest > | |
void | subTo (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheRight (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheLeft (Dest &dst) const |
Protected Member Functions | |
template<typename OtherDerived > | |
Derived & | assign (const OtherDerived &other) |
template<typename OtherDerived > | |
void | assignGeneric (const OtherDerived &other) |
Protected Attributes | |
bool | m_isRValue |
Friends | |
const ScalarMultipleReturnType | operator* (const Scalar &scalar, const StorageBaseType &matrix) |
const CwiseUnaryOp< internal::scalar_multiple2_op< Scalar, std::complex< Scalar > >, const Derived > | operator* (const std::complex< Scalar > &scalar, const StorageBaseType &matrix) |
std::ostream & | operator<< (std::ostream &s, const SparseMatrixBase &m) |
template<typename OtherDerived > | |
const SparseDiagonalProduct< OtherDerived, Derived > | operator* (const DiagonalBase< OtherDerived > &lhs, const SparseMatrixBase &rhs) |
template<typename OtherDerived > | |
const DenseSparseProductReturnType< OtherDerived, Derived >::Type | operator* (const MatrixBase< OtherDerived > &lhs, const Derived &rhs) |
Base class of any sparse matrices or sparse expressions.
Derived | This class can be extended with the help of the plugin mechanism described on the page TopicCustomizingEigen by defining the preprocessor symbol EIGEN_SPARSEMATRIXBASE_PLUGIN . |
Definition at line 26 of file SparseMatrixBase.h.
typedef NumTraits<Scalar>::Real Eigen::SparseMatrixBase< Derived >::RealScalar |
This is the "real scalar" type; if the Scalar type is already real numbers (e.g. int, float or double) then RealScalar is just the same as Scalar. If Scalar is std::complex<T> then RealScalar is T.
Definition at line 118 of file SparseMatrixBase.h.
typedef Matrix<Scalar,EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime), EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)> Eigen::SparseMatrixBase< Derived >::SquareMatrixType |
type of the equivalent square matrix
Definition at line 129 of file SparseMatrixBase.h.
anonymous enum |
Enumerator | |
---|---|
RowsAtCompileTime |
The number of rows at compile-time. This is just a copy of the value provided by the Derived type. If a value is not known at compile-time, it is set to the Dynamic constant.
|
ColsAtCompileTime |
The number of columns at compile-time. This is just a copy of the value provided by the Derived type. If a value is not known at compile-time, it is set to the Dynamic constant.
|
SizeAtCompileTime |
This is equal to the number of coefficients, i.e. the number of rows times the number of columns, or to Dynamic if this is not known at compile-time.
|
IsVectorAtCompileTime |
This is set to true if either the number of rows or the number of columns is known at compile-time to be equal to 1. Indeed, in that case, we are dealing with a column-vector (if there is only one column) or with a row-vector (if there is only one row). |
Flags |
This stores expression Flags flags which may or may not be inherited by new expressions constructed from this one. See the list of flags. |
CoeffReadCost |
This is a rough measure of how expensive it is to read one coefficient from this expression. |
Definition at line 48 of file SparseMatrixBase.h.
|
inline |
*this
and other *this
and other The template parameter CustomBinaryOp is the type of the functor of the custom operator (see class CwiseBinaryOp for an example)
Here is an example illustrating the use of custom functors:
Output:
Definition at line 43 of file SparseMatrixBase.h.
|
inline |
startRow | the first row in the block |
startCol | the first column in the block |
blockRows | the number of rows in the block |
blockCols | the number of columns in the block |
Example:
Output:
Definition at line 57 of file SparseMatrixBase.h.
|
inline |
This is the const version of block(Index,Index,Index,Index).
Definition at line 63 of file SparseMatrixBase.h.
|
inline |
The template parameters BlockRows and BlockCols are the number of rows and columns in the block.
startRow | the first row in the block |
startCol | the first column in the block |
Example:
Output:
Definition at line 657 of file SparseMatrixBase.h.
|
inline |
This is the const version of block<>(Index, Index).
Definition at line 664 of file SparseMatrixBase.h.
|
inline |
BlockRows | number of rows in block as specified at compile time |
BlockCols | number of columns in block as specified at compile time |
startRow | the first row in the block |
startCol | the first column in the block |
blockRows | number of rows in block as specified at run time |
blockCols | number of columns in block as specified at run time |
This function is mainly useful for blocks where the number of rows is specified at compile time and the number of columns is specified at run time, or vice versa. The compile-time and run-time information should not contradict. In other words, blockRows should equal BlockRows unless BlockRows is Dynamic, and the same for the number of columns.
Example:
Output:
Definition at line 689 of file SparseMatrixBase.h.
|
inline |
This is the const version of block<>(Index, Index, Index, Index).
Definition at line 697 of file SparseMatrixBase.h.
|
inline |
cRows | the number of rows in the corner |
cCols | the number of columns in the corner |
Example:
Output:
Definition at line 307 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomLeftCorner(Index, Index).
Definition at line 313 of file SparseMatrixBase.h.
|
inline |
The template parameters CRows and CCols are the number of rows and columns in the corner.
Example:
Output:
Definition at line 328 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomLeftCorner<int, int>().
Definition at line 335 of file SparseMatrixBase.h.
|
inline |
CRows | number of rows in corner as specified at compile time |
CCols | number of columns in corner as specified at compile time |
cRows | number of rows in corner as specified at run time |
cCols | number of columns in corner as specified at run time |
This function is mainly useful for corners where the number of rows is specified at compile time and the number of columns is specified at run time, or vice versa. The compile-time and run-time information should not contradict. In other words, cRows should equal CRows unless CRows is Dynamic, and the same for the number of columns.
Example:
Output:
Definition at line 358 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomLeftCorner<int, int>(Index, Index).
Definition at line 365 of file SparseMatrixBase.h.
|
inline |
cRows | the number of rows in the corner |
cCols | the number of columns in the corner |
Example:
Output:
Definition at line 232 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomRightCorner(Index, Index).
Definition at line 238 of file SparseMatrixBase.h.
|
inline |
The template parameters CRows and CCols are the number of rows and columns in the corner.
Example:
Output:
Definition at line 253 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomRightCorner<int, int>().
Definition at line 260 of file SparseMatrixBase.h.
|
inline |
CRows | number of rows in corner as specified at compile time |
CCols | number of columns in corner as specified at compile time |
cRows | number of rows in corner as specified at run time |
cCols | number of columns in corner as specified at run time |
This function is mainly useful for corners where the number of rows is specified at compile time and the number of columns is specified at run time, or vice versa. The compile-time and run-time information should not contradict. In other words, cRows should equal CRows unless CRows is Dynamic, and the same for the number of columns.
Example:
Output:
Definition at line 283 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomRightCorner<int, int>(Index, Index).
Definition at line 290 of file SparseMatrixBase.h.
|
inline |
n | the number of rows in the block |
Example:
Output:
Definition at line 425 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomRows(Index).
Definition at line 431 of file SparseMatrixBase.h.
|
inline |
N | the number of rows in the block |
Example:
Output:
Definition at line 446 of file SparseMatrixBase.h.
|
inline |
This is the const version of bottomRows<int>().
Definition at line 453 of file SparseMatrixBase.h.
|
inline |
The template parameter NewScalar is the type we are casting the scalars to.
Definition at line 93 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 709 of file SparseMatrixBase.h.
|
inline |
This is the const version of col().
Definition at line 715 of file SparseMatrixBase.h.
|
inline |
|
inline |
*this
.Definition at line 102 of file SparseMatrixBase.h.
|
inline |
*this
Example:
Output:
Definition at line 22 of file SparseMatrixBase.h.
|
inline |
*this
Example:
Output:
Definition at line 32 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 42 of file SparseMatrixBase.h.
|
inline |
*this
and a scalar s Definition at line 64 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 52 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 99 of file SparseMatrixBase.h.
|
inline |
Definition at line 109 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 75 of file SparseMatrixBase.h.
|
inline |
Definition at line 85 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 61 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 124 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 42 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 22 of file SparseMatrixBase.h.
|
inline |
Notice that in the case of a plain matrix or vector (not an expression) this function just returns a const reference, in order to avoid a useless copy.
Definition at line 439 of file SparseMatrixBase.h.
|
inline |
vecSize | the number of coefficients in the block |
Example:
Output:
Definition at line 782 of file SparseMatrixBase.h.
|
inline |
This is the const version of head(Index).
Definition at line 790 of file SparseMatrixBase.h.
|
inline |
The template parameter Size is the number of coefficients in the block
Example:
Output:
Definition at line 864 of file SparseMatrixBase.h.
|
inline |
This is the const version of head<int>().
Definition at line 872 of file SparseMatrixBase.h.
|
inline |
*this
.Definition at line 117 of file SparseMatrixBase.h.
|
inline |
*this
.Definition at line 173 of file SparseMatrixBase.h.
|
inline |
Definition at line 169 of file SparseMatrixBase.h.
SparseMatrixBase< Derived >::InnerVectorReturnType Eigen::SparseMatrixBase< Derived >::innerVector | ( | Index | outer | ) |
*this
if *this
is col-major (resp. row-major). Definition at line 252 of file SparseBlock.h.
const SparseMatrixBase< Derived >::ConstInnerVectorReturnType Eigen::SparseMatrixBase< Derived >::innerVector | ( | Index | outer | ) | const |
*this
if *this
is col-major (resp. row-major). Read-only. Definition at line 259 of file SparseBlock.h.
Block< Derived, Dynamic, Dynamic, true > Eigen::SparseMatrixBase< Derived >::innerVectors | ( | Index | outerStart, |
Index | outerSize | ||
) |
*this
if *this
is col-major (resp. row-major). Definition at line 266 of file SparseBlock.h.
const Block< const Derived, Dynamic, Dynamic, true > Eigen::SparseMatrixBase< Derived >::innerVectors | ( | Index | outerStart, |
Index | outerSize | ||
) | const |
*this
if *this
is col-major (resp. row-major). Read-only. Definition at line 278 of file SparseBlock.h.
|
inline |
Definition at line 163 of file SparseMatrixBase.h.
|
inline |
n | the number of columns in the block |
Example:
Output:
Definition at line 515 of file SparseMatrixBase.h.
|
inline |
This is the const version of leftCols(Index).
Definition at line 521 of file SparseMatrixBase.h.
|
inline |
N | the number of columns in the block |
Example:
Output:
Definition at line 536 of file SparseMatrixBase.h.
|
inline |
This is the const version of leftCols<int>().
Definition at line 543 of file SparseMatrixBase.h.
|
inline |
startCol | the index of the first column in the block |
numCols | the number of columns in the block |
Example:
Output:
Definition at line 604 of file SparseMatrixBase.h.
|
inline |
This is the const version of middleCols(Index,Index).
Definition at line 610 of file SparseMatrixBase.h.
|
inline |
N | the number of columns in the block |
startCol | the index of the first column in the block |
Example:
Output:
Definition at line 626 of file SparseMatrixBase.h.
|
inline |
This is the const version of middleCols<int>().
Definition at line 633 of file SparseMatrixBase.h.
|
inline |
startRow | the index of the first row in the block |
numRows | the number of rows in the block |
Example:
Output:
Definition at line 470 of file SparseMatrixBase.h.
|
inline |
This is the const version of middleRows(Index,Index).
Definition at line 476 of file SparseMatrixBase.h.
|
inline |
N | the number of rows in the block |
startRow | the index of the first row in the block |
Example:
Output:
Definition at line 492 of file SparseMatrixBase.h.
|
inline |
This is the const version of middleRows<int>().
Definition at line 499 of file SparseMatrixBase.h.
|
inline |
Definition at line 158 of file SparseMatrixBase.h.
|
inline |
*this
scaled by the scalar factor scalar Definition at line 50 of file SparseMatrixBase.h.
|
inline |
Overloaded for efficient real matrix times complex scalar value
Definition at line 70 of file SparseMatrixBase.h.
|
inline |
ref
is a meaningful non zero reference value. Definition at line 180 of file SparseProduct.h.
|
inline |
sparse * dense (returns a dense object unless it is an outer product)
Definition at line 294 of file SparseDenseProduct.h.
|
inline |
*this
Definition at line 45 of file SparseMatrixBase.h.
|
inline |
*this
divided by the scalar value scalar Definition at line 62 of file SparseMatrixBase.h.
|
inline |
Definition at line 166 of file SparseMatrixBase.h.
|
inline |
*this
.Definition at line 111 of file SparseMatrixBase.h.
|
inline |
*this
.Definition at line 167 of file SparseMatrixBase.h.
|
inline |
n | the number of columns in the block |
Example:
Output:
Definition at line 559 of file SparseMatrixBase.h.
|
inline |
This is the const version of rightCols(Index).
Definition at line 565 of file SparseMatrixBase.h.
|
inline |
N | the number of columns in the block |
Example:
Output:
Definition at line 580 of file SparseMatrixBase.h.
|
inline |
This is the const version of rightCols<int>().
Definition at line 587 of file SparseMatrixBase.h.
|
inline |
Example:
Output:
Definition at line 726 of file SparseMatrixBase.h.
|
inline |
This is the const version of row().
Definition at line 732 of file SparseMatrixBase.h.
|
inline |
|
inline |
start | the first coefficient in the segment |
vecSize | the number of coefficients in the segment |
Example:
Output:
Definition at line 753 of file SparseMatrixBase.h.
|
inline |
This is the const version of segment(Index,Index).
Definition at line 761 of file SparseMatrixBase.h.
|
inline |
*this
The template parameter Size is the number of coefficients in the block
start | the index of the first element of the sub-vector |
Example:
Output:
Definition at line 838 of file SparseMatrixBase.h.
|
inline |
This is the const version of segment<int>(Index).
Definition at line 846 of file SparseMatrixBase.h.
|
inline |
Definition at line 155 of file SparseMatrixBase.h.
|
inline |
vecSize | the number of coefficients in the block |
Example:
Output:
Definition at line 811 of file SparseMatrixBase.h.
|
inline |
This is the const version of tail(Index).
Definition at line 818 of file SparseMatrixBase.h.
|
inline |
The template parameter Size is the number of coefficients in the block
Example:
Output:
Definition at line 890 of file SparseMatrixBase.h.
|
inline |
This is the const version of tail<int>.
Definition at line 898 of file SparseMatrixBase.h.
|
inline |
cRows | the number of rows in the corner |
cCols | the number of columns in the corner |
Example:
Output:
Definition at line 157 of file SparseMatrixBase.h.
|
inline |
This is the const version of topLeftCorner(Index, Index).
Definition at line 163 of file SparseMatrixBase.h.
|
inline |
The template parameters CRows and CCols are the number of rows and columns in the corner.
Example:
Output:
Definition at line 178 of file SparseMatrixBase.h.
|
inline |
This is the const version of topLeftCorner<int, int>().
Definition at line 185 of file SparseMatrixBase.h.
|
inline |
CRows | number of rows in corner as specified at compile time |
CCols | number of columns in corner as specified at compile time |
cRows | number of rows in corner as specified at run time |
cCols | number of columns in corner as specified at run time |
This function is mainly useful for corners where the number of rows is specified at compile time and the number of columns is specified at run time, or vice versa. The compile-time and run-time information should not contradict. In other words, cRows should equal CRows unless CRows is Dynamic, and the same for the number of columns.
Example:
Output:
Definition at line 208 of file SparseMatrixBase.h.
|
inline |
This is the const version of topLeftCorner<int, int>(Index, Index).
Definition at line 215 of file SparseMatrixBase.h.
|
inline |
cRows | the number of rows in the corner |
cCols | the number of columns in the corner |
Example:
Output:
Definition at line 81 of file SparseMatrixBase.h.
|
inline |
This is the const version of topRightCorner(Index, Index).
Definition at line 87 of file SparseMatrixBase.h.
|
inline |
CRows | the number of rows in the corner |
CCols | the number of columns in the corner |
Example:
Output:
Definition at line 103 of file SparseMatrixBase.h.
|
inline |
This is the const version of topRightCorner<int, int>().
Definition at line 110 of file SparseMatrixBase.h.
|
inline |
CRows | number of rows in corner as specified at compile time |
CCols | number of columns in corner as specified at compile time |
cRows | number of rows in corner as specified at run time |
cCols | number of columns in corner as specified at run time |
This function is mainly useful for corners where the number of rows is specified at compile time and the number of columns is specified at run time, or vice versa. The compile-time and run-time information should not contradict. In other words, cRows should equal CRows unless CRows is Dynamic, and the same for the number of columns.
Example:
Output:
Definition at line 133 of file SparseMatrixBase.h.
|
inline |
This is the const version of topRightCorner<int, int>(Index, Index).
Definition at line 140 of file SparseMatrixBase.h.
|
inline |
n | the number of rows in the block |
Example:
Output:
Definition at line 381 of file SparseMatrixBase.h.
|
inline |
This is the const version of topRows(Index).
Definition at line 387 of file SparseMatrixBase.h.
|
inline |
N | the number of rows in the block |
Example:
Output:
Definition at line 402 of file SparseMatrixBase.h.
|
inline |
This is the const version of topRows<int>().
Definition at line 409 of file SparseMatrixBase.h.
|
inline |
*this
Definition at line 364 of file SparseMatrixBase.h.
|
inline |
Apply a unary operator coefficient-wise.
[in] | func | Functor implementing the unary operator |
CustomUnaryOp | Type of func |
The function ptr_fun()
from the C++ standard library can be used to make functors out of normal functions.
Example:
Output:
Genuine functors allow for more possibilities, for instance it may contain a state.
Example:
Output:
Definition at line 140 of file SparseMatrixBase.h.
|
inline |
The template parameter CustomUnaryOp is the type of the functor of the custom unary operator.
Example:
Output:
Definition at line 158 of file SparseMatrixBase.h.
|
friend |
dense * sparse (return a dense object unless it is an outer product)
Definition at line 355 of file SparseMatrixBase.h.