|
Index | diagonalSize () 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 |
| Overloaded for efficient real matrix times complex scalar value.
|
|
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 |
|
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 |
|
const CwiseScalarEqualReturnType | cwiseEqual (const Scalar &s) const |
|
Derived & | operator= (const MatrixBase &other) |
| Special case of the template operator=, in order to prevent the compiler from generating a default operator= (issue hit with g++ 4.1)
|
|
template<typename OtherDerived > |
Derived & | operator= (const DenseBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
Derived & | operator= (const EigenBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
Derived & | operator= (const ReturnByValue< OtherDerived > &other) |
|
template<typename ProductDerived , typename Lhs , typename Rhs > |
Derived & | lazyAssign (const ProductBase< ProductDerived, Lhs, Rhs > &other) |
|
template<typename MatrixPower , typename Lhs , typename Rhs > |
Derived & | lazyAssign (const MatrixPowerProduct< MatrixPower, Lhs, Rhs > &other) |
|
template<typename OtherDerived > |
Derived & | operator+= (const MatrixBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
Derived & | operator-= (const MatrixBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
const ProductReturnType< Derived, OtherDerived >::Type | operator* (const MatrixBase< OtherDerived > &other) const |
|
template<typename OtherDerived > |
const LazyProductReturnType< Derived, OtherDerived >::Type | lazyProduct (const MatrixBase< OtherDerived > &other) const |
|
template<typename OtherDerived > |
Derived & | operator*= (const EigenBase< OtherDerived > &other) |
| replaces *this by *this * other. More...
|
|
template<typename OtherDerived > |
void | applyOnTheLeft (const EigenBase< OtherDerived > &other) |
| replaces *this by other * *this . More...
|
|
template<typename OtherDerived > |
void | applyOnTheRight (const EigenBase< OtherDerived > &other) |
| replaces *this by *this * other. More...
|
|
template<typename DiagonalDerived > |
const DiagonalProduct< Derived, DiagonalDerived, OnTheRight > | operator* (const DiagonalBase< DiagonalDerived > &diagonal) const |
|
template<typename OtherDerived > |
internal::scalar_product_traits< typename internal::traits< Derived >::Scalar, typename internal::traits< OtherDerived >::Scalar >::ReturnType | dot (const MatrixBase< OtherDerived > &other) const |
|
RealScalar | squaredNorm () const |
|
RealScalar | norm () const |
|
RealScalar | stableNorm () const |
|
RealScalar | blueNorm () const |
|
RealScalar | hypotNorm () const |
|
const PlainObject | normalized () const |
|
void | normalize () |
| Normalizes the vector, i.e. More...
|
|
const AdjointReturnType | adjoint () const |
|
void | adjointInPlace () |
| This is the "in place" version of adjoint(): it replaces *this by its own transpose. More...
|
|
DiagonalReturnType | diagonal () |
|
ConstDiagonalReturnType | diagonal () const |
| This is the const version of diagonal(). More...
|
|
template<int Index> |
DiagonalIndexReturnType< Index >::Type | diagonal () |
|
template<int Index> |
ConstDiagonalIndexReturnType< Index >::Type | diagonal () const |
|
DiagonalDynamicIndexReturnType | diagonal (Index index) |
|
ConstDiagonalDynamicIndexReturnType | diagonal (Index index) const |
| This is the const version of diagonal(Index). More...
|
|
template<unsigned int Mode> |
TriangularViewReturnType< Mode >::Type | triangularView () |
|
template<unsigned int Mode> |
ConstTriangularViewReturnType< Mode >::Type | triangularView () const |
|
template<unsigned int UpLo> |
SelfAdjointViewReturnType< UpLo >::Type | selfadjointView () |
|
template<unsigned int UpLo> |
ConstSelfAdjointViewReturnType< UpLo >::Type | selfadjointView () const |
|
const SparseView< Derived > | sparseView (const Scalar &m_reference=Scalar(0), const typename NumTraits< Scalar >::Real &m_epsilon=NumTraits< Scalar >::dummy_precision()) const |
|
const DiagonalWrapper< const Derived > | asDiagonal () const |
|
const PermutationWrapper< const Derived > | asPermutation () const |
|
Derived & | setIdentity () |
| Writes the identity expression (not necessarily square) into *this. More...
|
|
Derived & | setIdentity (Index rows, Index cols) |
| Resizes to the given size, and writes the identity expression (not necessarily square) into *this. More...
|
|
bool | isIdentity (const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isDiagonal (const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isUpperTriangular (const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isLowerTriangular (const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
template<typename OtherDerived > |
bool | isOrthogonal (const MatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isUnitary (const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
template<typename OtherDerived > |
bool | operator== (const MatrixBase< OtherDerived > &other) const |
|
template<typename OtherDerived > |
bool | operator!= (const MatrixBase< OtherDerived > &other) const |
|
NoAlias< Derived, Eigen::MatrixBase > | noalias () |
|
const ForceAlignedAccess< Derived > | forceAlignedAccess () const |
|
ForceAlignedAccess< Derived > | forceAlignedAccess () |
|
template<bool Enable> |
internal::add_const_on_value_type< typename internal::conditional< Enable, ForceAlignedAccess< Derived >, Derived & >::type >::type | forceAlignedAccessIf () const |
|
template<bool Enable> |
internal::conditional< Enable, ForceAlignedAccess< Derived >, Derived & >::type | forceAlignedAccessIf () |
|
Scalar | trace () const |
|
template<int p> |
RealScalar | lpNorm () const |
|
MatrixBase< Derived > & | matrix () |
|
const MatrixBase< Derived > & | matrix () const |
|
ArrayWrapper< Derived > | array () |
|
const ArrayWrapper< const Derived > | array () const |
|
const FullPivLU< PlainObject > | fullPivLu () const |
|
const PartialPivLU< PlainObject > | partialPivLu () const |
|
const internal::inverse_impl< Derived > | inverse () const |
|
template<typename ResultType > |
void | computeInverseAndDetWithCheck (ResultType &inverse, typename ResultType::Scalar &determinant, bool &invertible, const RealScalar &absDeterminantThreshold=NumTraits< Scalar >::dummy_precision()) const |
|
template<typename ResultType > |
void | computeInverseWithCheck (ResultType &inverse, bool &invertible, const RealScalar &absDeterminantThreshold=NumTraits< Scalar >::dummy_precision()) const |
|
Scalar | determinant () const |
|
const LLT< PlainObject > | llt () const |
|
const LDLT< PlainObject > | ldlt () const |
|
const HouseholderQR< PlainObject > | householderQr () const |
|
const ColPivHouseholderQR< PlainObject > | colPivHouseholderQr () const |
|
const FullPivHouseholderQR< PlainObject > | fullPivHouseholderQr () const |
|
EigenvaluesReturnType | eigenvalues () const |
| Computes the eigenvalues of a matrix. More...
|
|
RealScalar | operatorNorm () const |
| Computes the L2 operator norm. More...
|
|
JacobiSVD< PlainObject > | jacobiSvd (unsigned int computationOptions=0) const |
|
template<typename OtherDerived > |
cross_product_return_type< OtherDerived >::type | cross (const MatrixBase< OtherDerived > &other) const |
|
template<typename OtherDerived > |
PlainObject | cross3 (const MatrixBase< OtherDerived > &other) const |
|
PlainObject | unitOrthogonal (void) const |
|
Matrix< Scalar, 3, 1 > | eulerAngles (Index a0, Index a1, Index a2) const |
|
const HNormalizedReturnType | hnormalized () const |
|
void | makeHouseholderInPlace (Scalar &tau, RealScalar &beta) |
| Computes the elementary reflector H such that: \( H *this = [ beta 0 ... 0]^T \) where the transformation H is: \( H = I - tau v v^*\) and the vector v is: \( v^T = [1 essential^T] \). More...
|
|
template<typename EssentialPart > |
void | makeHouseholder (EssentialPart &essential, Scalar &tau, RealScalar &beta) const |
| Computes the elementary reflector H such that: \( H *this = [ beta 0 ... 0]^T \) where the transformation H is: \( H = I - tau v v^*\) and the vector v is: \( v^T = [1 essential^T] \). More...
|
|
template<typename EssentialPart > |
void | applyHouseholderOnTheLeft (const EssentialPart &essential, const Scalar &tau, Scalar *workspace) |
| Apply the elementary reflector H given by \( H = I - tau v v^*\) with \( v^T = [1 essential^T] \) from the left to a vector or matrix. More...
|
|
template<typename EssentialPart > |
void | applyHouseholderOnTheRight (const EssentialPart &essential, const Scalar &tau, Scalar *workspace) |
| Apply the elementary reflector H given by \( H = I - tau v v^*\) with \( v^T = [1 essential^T] \) from the right to a vector or matrix. More...
|
|
template<typename OtherScalar > |
void | applyOnTheLeft (Index p, Index q, const JacobiRotation< OtherScalar > &j) |
| Applies the rotation in the plane j to the rows p and q of *this , i.e., it computes B = J * B, with \( B = \left ( \begin{array}{cc} \text{*this.row}(p) \\ \text{*this.row}(q) \end{array} \right ) \). More...
|
|
template<typename OtherScalar > |
void | applyOnTheRight (Index p, Index q, const JacobiRotation< OtherScalar > &j) |
| Applies the rotation in the plane j to the columns p and q of *this , i.e., it computes B = B * J with \( B = \left ( \begin{array}{cc} \text{*this.col}(p) & \text{*this.col}(q) \end{array} \right ) \). More...
|
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE const SparseMatrixBase< OtherDerived >::template CwiseProductDenseReturnType< Derived >::Type | cwiseProduct (const SparseMatrixBase< OtherDerived > &other) const |
|
const MatrixExponentialReturnValue< Derived > | exp () const |
|
const MatrixFunctionReturnValue< Derived > | matrixFunction (StemFunction f) const |
|
const MatrixFunctionReturnValue< Derived > | cosh () const |
|
const MatrixFunctionReturnValue< Derived > | sinh () const |
|
const MatrixFunctionReturnValue< Derived > | cos () const |
|
const MatrixFunctionReturnValue< Derived > | sin () const |
|
const MatrixSquareRootReturnValue< Derived > | sqrt () const |
|
const MatrixLogarithmReturnValue< Derived > | log () const |
|
const MatrixPowerReturnValue< Derived > | pow (const RealScalar &p) const |
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE Derived & | operator= (const DenseBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE Derived & | operator= (const EigenBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE Derived & | operator= (const ReturnByValue< OtherDerived > &other) |
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE Derived & | operator-= (const MatrixBase< OtherDerived > &other) |
| replaces *this by *this - other. More...
|
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE Derived & | operator+= (const MatrixBase< OtherDerived > &other) |
| replaces *this by *this + other. More...
|
|
template<int p> |
NumTraits< typename internal::traits< Derived >::Scalar >::Real | lpNorm () const |
|
template<unsigned int UpLo> |
MatrixBase< Derived >::template ConstSelfAdjointViewReturnType< UpLo >::Type | selfadjointView () const |
|
template<unsigned int UpLo> |
MatrixBase< Derived >::template SelfAdjointViewReturnType< UpLo >::Type | selfadjointView () |
|
template<unsigned int Mode> |
MatrixBase< Derived >::template TriangularViewReturnType< Mode >::Type | triangularView () |
|
template<unsigned int Mode> |
MatrixBase< Derived >::template ConstTriangularViewReturnType< Mode >::Type | triangularView () const |
| This is the const version of MatrixBase::triangularView()
|
|
template<typename OtherDerived > |
MatrixBase< Derived >::template cross_product_return_type< OtherDerived >::type | cross (const MatrixBase< OtherDerived > &other) const |
|
template<typename Derived > |
MatrixBase< Derived >::ScalarMultipleReturnType | operator* (const UniformScaling< Scalar > &s) const |
| Concatenates a linear transformation matrix and a uniform scaling.
|
|
Index | nonZeros () const |
|
Index | outerSize () const |
|
Index | innerSize () const |
|
void | resize (Index newSize) |
| Only plain matrices/arrays, not expressions, may be resized; therefore the only useful resize methods are Matrix::resize() and Array::resize(). More...
|
|
void | resize (Index nbRows, Index nbCols) |
| Only plain matrices/arrays, not expressions, may be resized; therefore the only useful resize methods are Matrix::resize() and Array::resize(). More...
|
|
template<typename OtherDerived > |
Derived & | operator= (const DenseBase< OtherDerived > &other) |
| Copies other into *this. More...
|
|
Derived & | operator= (const DenseBase &other) |
| Special case of the template operator=, in order to prevent the compiler from generating a default operator= (issue hit with g++ 4.1)
|
|
template<typename OtherDerived > |
Derived & | operator= (const EigenBase< OtherDerived > &other) |
| Copies the generic expression other into *this. More...
|
|
template<typename OtherDerived > |
Derived & | operator+= (const EigenBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
Derived & | operator-= (const EigenBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
Derived & | operator= (const ReturnByValue< OtherDerived > &func) |
|
template<typename OtherDerived > |
Derived & | lazyAssign (const DenseBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
Derived & | lazyAssign (const ReturnByValue< OtherDerived > &other) |
|
CommaInitializer< Derived > | operator<< (const Scalar &s) |
|
template<unsigned int Added, unsigned int Removed> |
const Flagged< Derived, Added, Removed > | flagged () const |
|
template<typename OtherDerived > |
CommaInitializer< Derived > | operator<< (const DenseBase< OtherDerived > &other) |
|
Eigen::Transpose< Derived > | transpose () |
|
ConstTransposeReturnType | transpose () const |
| This is the const version of transpose(). More...
|
|
void | transposeInPlace () |
| This is the "in place" version of transpose(): it replaces *this by its own transpose. More...
|
|
void | fill (const Scalar &value) |
| Alias for setConstant(): sets all coefficients in this expression to val. More...
|
|
Derived & | setConstant (const Scalar &value) |
| Sets all coefficients in this expression to value. More...
|
|
Derived & | setLinSpaced (Index size, const Scalar &low, const Scalar &high) |
| Sets a linearly space vector. More...
|
|
Derived & | setLinSpaced (const Scalar &low, const Scalar &high) |
| Sets a linearly space vector. More...
|
|
Derived & | setZero () |
| Sets all coefficients in this expression to zero. More...
|
|
Derived & | setOnes () |
| Sets all coefficients in this expression to one. More...
|
|
Derived & | setRandom () |
| Sets all coefficients in this expression to random values. More...
|
|
template<typename OtherDerived > |
bool | isApprox (const DenseBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isMuchSmallerThan (const RealScalar &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
template<typename OtherDerived > |
bool | isMuchSmallerThan (const DenseBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isApproxToConstant (const Scalar &value, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isConstant (const Scalar &value, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
| This is just an alias for isApproxToConstant(). More...
|
|
bool | isZero (const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | isOnes (const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const |
|
bool | hasNaN () const |
|
bool | allFinite () const |
|
Derived & | operator*= (const Scalar &other) |
|
Derived & | operator/= (const Scalar &other) |
|
EIGEN_STRONG_INLINE EvalReturnType | eval () const |
|
template<typename OtherDerived > |
void | swap (const DenseBase< OtherDerived > &other, int=OtherDerived::ThisConstantIsPrivateInPlainObjectBase) |
| swaps *this with the expression other.
|
|
template<typename OtherDerived > |
void | swap (PlainObjectBase< OtherDerived > &other) |
| swaps *this with the matrix or array other.
|
|
const NestByValue< Derived > | nestByValue () const |
|
const ForceAlignedAccess< Derived > | forceAlignedAccess () const |
|
ForceAlignedAccess< Derived > | forceAlignedAccess () |
|
template<bool Enable> |
const internal::conditional< Enable, ForceAlignedAccess< Derived >, Derived & >::type | forceAlignedAccessIf () const |
|
template<bool Enable> |
internal::conditional< Enable, ForceAlignedAccess< Derived >, Derived & >::type | forceAlignedAccessIf () |
|
Scalar | sum () const |
|
Scalar | mean () const |
|
Scalar | trace () const |
|
Scalar | prod () const |
|
internal::traits< Derived >::Scalar | minCoeff () const |
|
internal::traits< Derived >::Scalar | maxCoeff () const |
|
template<typename IndexType > |
internal::traits< Derived >::Scalar | minCoeff (IndexType *row, IndexType *col) const |
|
template<typename IndexType > |
internal::traits< Derived >::Scalar | maxCoeff (IndexType *row, IndexType *col) const |
|
template<typename IndexType > |
internal::traits< Derived >::Scalar | minCoeff (IndexType *index) const |
|
template<typename IndexType > |
internal::traits< Derived >::Scalar | maxCoeff (IndexType *index) const |
|
template<typename BinaryOp > |
internal::result_of< BinaryOp(typename internal::traits< Derived >::Scalar)>::type | redux (const BinaryOp &func) const |
|
template<typename Visitor > |
void | visit (Visitor &func) const |
| Applies the visitor visitor to the whole coefficients of the matrix or vector. More...
|
|
const WithFormat< Derived > | format (const IOFormat &fmt) const |
|
CoeffReturnType | value () const |
|
bool | all (void) const |
|
bool | any (void) const |
|
Index | count () const |
|
ConstRowwiseReturnType | rowwise () const |
|
RowwiseReturnType | rowwise () |
|
ConstColwiseReturnType | colwise () const |
|
ColwiseReturnType | colwise () |
|
template<typename ThenDerived , typename ElseDerived > |
const Select< Derived, ThenDerived, ElseDerived > | select (const DenseBase< ThenDerived > &thenMatrix, const DenseBase< ElseDerived > &elseMatrix) const |
|
template<typename ThenDerived > |
const Select< Derived, ThenDerived, typename ThenDerived::ConstantReturnType > | select (const DenseBase< ThenDerived > &thenMatrix, const typename ThenDerived::Scalar &elseScalar) const |
| Version of DenseBase::select(const DenseBase&, const DenseBase&) with the else expression being a scalar value. More...
|
|
template<typename ElseDerived > |
const Select< Derived, typename ElseDerived::ConstantReturnType, ElseDerived > | select (const typename ElseDerived::Scalar &thenScalar, const DenseBase< ElseDerived > &elseMatrix) const |
| Version of DenseBase::select(const DenseBase&, const DenseBase&) with the then expression being a scalar value. More...
|
|
template<int p> |
RealScalar | lpNorm () const |
|
template<int RowFactor, int ColFactor> |
const Replicate< Derived, RowFactor, ColFactor > | replicate () const |
|
const ReplicateReturnType | replicate (Index rowFacor, Index colFactor) const |
|
ReverseReturnType | reverse () |
|
ConstReverseReturnType | reverse () const |
| This is the const version of reverse(). More...
|
|
void | reverseInPlace () |
| This is the "in place" version of reverse: it reverses *this . More...
|
|
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 |
| This is the const version of block(Index,Index,Index,Index). More...
|
|
Block< Derived > | topRightCorner (Index cRows, Index cCols) |
|
const Block< const Derived > | topRightCorner (Index cRows, Index cCols) const |
| This is the const version of topRightCorner(Index, Index). More...
|
|
template<int CRows, int CCols> |
Block< Derived, CRows, CCols > | topRightCorner () |
|
template<int CRows, int CCols> |
const Block< const Derived, CRows, CCols > | topRightCorner () const |
| This is the const version of topRightCorner<int, int>(). More...
|
|
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 |
| This is the const version of topRightCorner<int, int>(Index, Index). More...
|
|
Block< Derived > | topLeftCorner (Index cRows, Index cCols) |
|
const Block< const Derived > | topLeftCorner (Index cRows, Index cCols) const |
| This is the const version of topLeftCorner(Index, Index). More...
|
|
template<int CRows, int CCols> |
Block< Derived, CRows, CCols > | topLeftCorner () |
|
template<int CRows, int CCols> |
const Block< const Derived, CRows, CCols > | topLeftCorner () const |
| This is the const version of topLeftCorner<int, int>(). More...
|
|
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 |
| This is the const version of topLeftCorner<int, int>(Index, Index). More...
|
|
Block< Derived > | bottomRightCorner (Index cRows, Index cCols) |
|
const Block< const Derived > | bottomRightCorner (Index cRows, Index cCols) const |
| This is the const version of bottomRightCorner(Index, Index). More...
|
|
template<int CRows, int CCols> |
Block< Derived, CRows, CCols > | bottomRightCorner () |
|
template<int CRows, int CCols> |
const Block< const Derived, CRows, CCols > | bottomRightCorner () const |
| This is the const version of bottomRightCorner<int, int>(). More...
|
|
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 |
| This is the const version of bottomRightCorner<int, int>(Index, Index). More...
|
|
Block< Derived > | bottomLeftCorner (Index cRows, Index cCols) |
|
const Block< const Derived > | bottomLeftCorner (Index cRows, Index cCols) const |
| This is the const version of bottomLeftCorner(Index, Index). More...
|
|
template<int CRows, int CCols> |
Block< Derived, CRows, CCols > | bottomLeftCorner () |
|
template<int CRows, int CCols> |
const Block< const Derived, CRows, CCols > | bottomLeftCorner () const |
| This is the const version of bottomLeftCorner<int, int>(). More...
|
|
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 |
| This is the const version of bottomLeftCorner<int, int>(Index, Index). More...
|
|
RowsBlockXpr | topRows (Index n) |
|
ConstRowsBlockXpr | topRows (Index n) const |
| This is the const version of topRows(Index). More...
|
|
template<int N> |
NRowsBlockXpr< N >::Type | topRows (Index n=N) |
|
template<int N> |
ConstNRowsBlockXpr< N >::Type | topRows (Index n=N) const |
| This is the const version of topRows<int>(). More...
|
|
RowsBlockXpr | bottomRows (Index n) |
|
ConstRowsBlockXpr | bottomRows (Index n) const |
| This is the const version of bottomRows(Index). More...
|
|
template<int N> |
NRowsBlockXpr< N >::Type | bottomRows (Index n=N) |
|
template<int N> |
ConstNRowsBlockXpr< N >::Type | bottomRows (Index n=N) const |
| This is the const version of bottomRows<int>(). More...
|
|
RowsBlockXpr | middleRows (Index startRow, Index n) |
|
ConstRowsBlockXpr | middleRows (Index startRow, Index n) const |
| This is the const version of middleRows(Index,Index). More...
|
|
template<int N> |
NRowsBlockXpr< N >::Type | middleRows (Index startRow, Index n=N) |
|
template<int N> |
ConstNRowsBlockXpr< N >::Type | middleRows (Index startRow, Index n=N) const |
| This is the const version of middleRows<int>(). More...
|
|
ColsBlockXpr | leftCols (Index n) |
|
ConstColsBlockXpr | leftCols (Index n) const |
| This is the const version of leftCols(Index). More...
|
|
template<int N> |
NColsBlockXpr< N >::Type | leftCols (Index n=N) |
|
template<int N> |
ConstNColsBlockXpr< N >::Type | leftCols (Index n=N) const |
| This is the const version of leftCols<int>(). More...
|
|
ColsBlockXpr | rightCols (Index n) |
|
ConstColsBlockXpr | rightCols (Index n) const |
| This is the const version of rightCols(Index). More...
|
|
template<int N> |
NColsBlockXpr< N >::Type | rightCols (Index n=N) |
|
template<int N> |
ConstNColsBlockXpr< N >::Type | rightCols (Index n=N) const |
| This is the const version of rightCols<int>(). More...
|
|
ColsBlockXpr | middleCols (Index startCol, Index numCols) |
|
ConstColsBlockXpr | middleCols (Index startCol, Index numCols) const |
| This is the const version of middleCols(Index,Index). More...
|
|
template<int N> |
NColsBlockXpr< N >::Type | middleCols (Index startCol, Index n=N) |
|
template<int N> |
ConstNColsBlockXpr< N >::Type | middleCols (Index startCol, Index n=N) const |
| This is the const version of middleCols<int>(). More...
|
|
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 |
| This is the const version of block<>(Index, Index). More...
|
|
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 |
| This is the const version of block<>(Index, Index, Index, Index). More...
|
|
ColXpr | col (Index i) |
|
ConstColXpr | col (Index i) const |
| This is the const version of col(). More...
|
|
RowXpr | row (Index i) |
|
ConstRowXpr | row (Index i) const |
| This is the const version of row(). More...
|
|
SegmentReturnType | segment (Index start, Index n) |
|
ConstSegmentReturnType | segment (Index start, Index n) const |
| This is the const version of segment(Index,Index). More...
|
|
SegmentReturnType | head (Index n) |
|
ConstSegmentReturnType | head (Index n) const |
| This is the const version of head(Index). More...
|
|
SegmentReturnType | tail (Index n) |
|
ConstSegmentReturnType | tail (Index n) const |
| This is the const version of tail(Index). More...
|
|
template<int N> |
FixedSegmentReturnType< N >::Type | segment (Index start, Index n=N) |
|
template<int N> |
ConstFixedSegmentReturnType< N >::Type | segment (Index start, Index n=N) const |
| This is the const version of segment<int>(Index). More...
|
|
template<int N> |
FixedSegmentReturnType< N >::Type | head (Index n=N) |
|
template<int N> |
ConstFixedSegmentReturnType< N >::Type | head (Index n=N) const |
| This is the const version of head<int>(). More...
|
|
template<int N> |
FixedSegmentReturnType< N >::Type | tail (Index n=N) |
|
template<int N> |
ConstFixedSegmentReturnType< N >::Type | tail (Index n=N) const |
| This is the const version of tail<int>. More...
|
|
template<typename Dest > |
void | evalTo (Dest &) const |
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE Derived & | lazyAssign (const DenseBase< OtherDerived > &other) |
|
template<typename OtherDerived > |
EIGEN_STRONG_INLINE Derived & | operator= (const DenseBase< OtherDerived > &other) |
|
template<typename CustomNullaryOp > |
EIGEN_STRONG_INLINE const CwiseNullaryOp< CustomNullaryOp, Derived > | NullaryExpr (Index rows, Index cols, const CustomNullaryOp &func) |
|
template<typename CustomNullaryOp > |
EIGEN_STRONG_INLINE const CwiseNullaryOp< CustomNullaryOp, Derived > | NullaryExpr (Index size, const CustomNullaryOp &func) |
|
template<typename CustomNullaryOp > |
EIGEN_STRONG_INLINE const CwiseNullaryOp< CustomNullaryOp, Derived > | NullaryExpr (const CustomNullaryOp &func) |
|
template<typename Derived > |
bool | isMuchSmallerThan (const typename NumTraits< Scalar >::Real &other, const RealScalar &prec) const |
|
template<typename Func > |
EIGEN_STRONG_INLINE internal::result_of< Func(typename internal::traits< Derived >::Scalar)>::type | redux (const Func &func) const |
|
void | operator* () const |
|