gdb.printers._MatrixEntryIterator Class Reference
+ Inheritance diagram for gdb.printers._MatrixEntryIterator:

Public Member Functions

def __init__ (self, rows, cols, row_major)
 
def __iter__ (self)
 
def next (self)
 
def __next__ (self)
 

Public Attributes

 rows
 
 cols
 
 currentRow
 
 currentCol
 
 rowMajor
 

Constructor & Destructor Documentation

◆ __init__()

def gdb.printers._MatrixEntryIterator.__init__ (   self,
  rows,
  cols,
  row_major 
)
36  def __init__(self, rows, cols, row_major):
37  self.rows = rows
38  self.cols = cols
39  self.currentRow = 0
40  self.currentCol = 0
41  self.rowMajor = row_major
42 

Member Function Documentation

◆ __iter__()

def gdb.printers._MatrixEntryIterator.__iter__ (   self)
43  def __iter__(self):
44  return self
45 

◆ __next__()

def gdb.printers._MatrixEntryIterator.__next__ (   self)

Reimplemented in gdb.printers.EigenSparseMatrixPrinter._Iterator, and gdb.printers.EigenMatrixPrinter._Iterator.

49  def __next__(self):
50  row = self.currentRow
51  col = self.currentCol
52  if self.rowMajor == 0:
53  if self.currentCol >= self.cols:
54  raise StopIteration
55 
56  self.currentRow += 1
57  if self.currentRow >= self.rows:
58  self.currentRow = 0
59  self.currentCol += 1
60  else:
61  if self.currentRow >= self.rows:
62  raise StopIteration
63 
64  self.currentCol += 1
65  if self.currentCol >= self.cols:
66  self.currentCol = 0
67  self.currentRow += 1
68 
69  return row, col
70 
71 

References gdb.printers._MatrixEntryIterator.cols, gdb.printers.EigenMatrixPrinter.cols, gdb.printers.EigenMatrixPrinter._Iterator.cols, MatrixReplacement.cols(), Eigen::AccelerateImpl< MatrixType_, UpLo_, Solver_, EnforceSquare_ >.cols(), Eigen::CholmodBase< MatrixType_, Lower, CholmodSupernodalLLT< MatrixType_, Lower > >.cols(), Eigen::CholmodBase< MatrixType_, Lower, CholmodSimplicialLLT< MatrixType_, Lower > >.cols(), Eigen::CholmodBase< MatrixType_, UpLo_, Derived >.cols(), Eigen::CholmodBase< MatrixType_, Lower, CholmodSimplicialLDLT< MatrixType_, Lower > >.cols(), Eigen::CholmodBase< MatrixType_, Lower, CholmodDecomposition< MatrixType_, Lower > >.cols(), Eigen::internal::BandMatrix< Scalar_, Rows, Cols, Supers, Subs, Options >.cols(), Eigen::internal::BandMatrix< Scalar, Size, Size, Options &SelfAdjoint ? 0 :1, 1, Options|RowMajor >.cols(), Eigen::internal::BandMatrix< RealScalar, ColsAtCompileTime, ColsAtCompileTime, 1, 0, RowMajor >.cols(), Eigen::internal::BandMatrixWrapper< CoefficientsType_, Rows_, Cols_, Supers_, Subs_, Options_ >.cols(), Eigen::internal::BlockImpl_dense< XprType, BlockRows, BlockCols, InnerPanel >.cols(), Eigen::internal::BlockImpl_dense< XprType, BlockRows, BlockCols, InnerPanel, HasDirectAccess >.cols(), Eigen::internal::unary_evaluator< CwiseUnaryOp< core_cast_op< SrcType, DstType >, ArgType >, IndexBased >.cols(), Eigen::CwiseNullaryOp< Eigen::internal::linspaced_op< Scalar >, PlainObject >.cols(), Eigen::CwiseNullaryOp< NullaryOp, PlainObjectType >.cols(), Eigen::CwiseTernaryOp< TernaryOp, Arg1Type, Arg2Type, Arg3Type >.cols(), Eigen::internal::DenseStorage_impl< T, Size, Rows, Cols, Options >.cols(), Eigen::internal::DenseStorage_impl< T, Size, Dynamic, Cols, Options >.cols(), Eigen::internal::DenseStorage_impl< T, Size, Rows, Dynamic, Options >.cols(), Eigen::internal::DenseStorage_impl< T, Size, Dynamic, Dynamic, Options >.cols(), Eigen::internal::DenseStorage_impl< T, 0, Rows, Cols, Options >.cols(), Eigen::internal::DenseStorage_impl< T, 0, Dynamic, Cols, Options >.cols(), Eigen::internal::DenseStorage_impl< T, 0, Rows, Dynamic, Options >.cols(), Eigen::internal::DenseStorage_impl< T, 0, Dynamic, Dynamic, Options >.cols(), Eigen::internal::DenseStorage_impl< T, Dynamic, Dynamic, Cols, Options >.cols(), Eigen::internal::DenseStorage_impl< T, Dynamic, Rows, Dynamic, Options >.cols(), Eigen::internal::DenseStorage_impl< T, Dynamic, Dynamic, Dynamic, Options >.cols(), Eigen::DiagonalBase< DiagonalWrapper< DiagonalVectorType_ > >.cols(), Eigen::DiagonalBase< Derived >.cols(), Eigen::DiagonalBase< DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime > >.cols(), Eigen::internal::IndexedViewImpl< XprType, RowIndices, ColIndices, internal::traits< XprType >::StorageKind,(internal::traits< IndexedView< XprType, RowIndices, ColIndices > >::Flags &DirectAccessBit) !=0 >.cols(), Eigen::internal::IndexedViewImpl< XprType, RowIndices, ColIndices, StorageKind, DirectAccess >.cols(), Eigen::internal::IndexedViewImpl< XprType, RowIndices, ColIndices, StorageKind, false >.cols(), Eigen::PermutationBase< PermutationMatrix< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ > >.cols(), Eigen::PermutationBase< Map< PermutationMatrix< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ >, PacketAccess_ > >.cols(), Eigen::PermutationBase< PermutationWrapper< IndicesType_ > >.cols(), Eigen::PermutationBase< Derived >.cols(), Eigen::Replicate< MatrixType, RowFactor, ColFactor >.cols(), Eigen::internal::ReshapedImpl_dense< XprType, Rows, Cols, Order, false >.cols(), Eigen::SkewSymmetricBase< SkewSymmetricMatrix3< Scalar_ > >.cols(), Eigen::SkewSymmetricBase< Derived >.cols(), Eigen::SkewSymmetricBase< SkewSymmetricWrapper< SkewSymmetricVectorType_ > >.cols(), Eigen::TranspositionsBase< TranspositionsWrapper< IndicesType_ > >.cols(), Eigen::TranspositionsBase< Map< Transpositions< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ >, PacketAccess > >.cols(), Eigen::TranspositionsBase< Transpositions< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ > >.cols(), Eigen::TranspositionsBase< Derived >.cols(), Eigen::Serializer< DenseBase< Derived >, void >::Header.cols, Eigen::internal::HessenbergDecompositionMatrixHReturnType< MatrixType >.cols(), Eigen::internal::image_retval_base< FullPivLU< MatrixType_, PermutationIndex_ > >.cols(), Eigen::internal::image_retval_base< DecompositionType_ >.cols(), Eigen::internal::kernel_retval_base< FullPivLU< MatrixType_, PermutationIndex_ > >.cols(), Eigen::internal::kernel_retval_base< DecompositionType_ >.cols(), Eigen::PardisoImpl< PardisoLDLT< MatrixType, Options > >.cols(), Eigen::PardisoImpl< PardisoLU< MatrixType > >.cols(), Eigen::PardisoImpl< PardisoLLT< MatrixType, UpLo_ > >.cols(), Eigen::PardisoImpl< Derived >.cols(), Eigen::PastixBase< PastixLLT< MatrixType_, UpLo_ > >.cols(), Eigen::PastixBase< PastixLU< MatrixType_ > >.cols(), Eigen::PastixBase< PastixLDLT< MatrixType_, UpLo_ > >.cols(), Eigen::PastixBase< Derived >.cols(), Eigen::ColPivHouseholderQR< TransposeTypeWithSameStorageOrder >.cols(), Eigen::ColPivHouseholderQR< MatrixType, PermutationIndex >.cols(), Eigen::ColPivHouseholderQR< MatrixType_, PermutationIndex_ >.cols(), Eigen::ColPivHouseholderQR< MatrixType >.cols(), Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >.cols(), Eigen::FullPivHouseholderQR< MatrixType >.cols(), Eigen::FullPivHouseholderQR< TransposeTypeWithSameStorageOrder >.cols(), Eigen::FullPivHouseholderQR< MatrixType_, PermutationIndex_ >.cols(), Eigen::internal::FullPivHouseholderQRMatrixQReturnType< MatrixType, PermutationIndex >.cols(), Eigen::HouseholderQR< Eigen::Matrix >.cols(), Eigen::HouseholderQR< TransposeTypeWithSameStorageOrder >.cols(), Eigen::HouseholderQR< MatrixType >.cols(), Eigen::HouseholderQR< MatrixType_ >.cols(), Eigen::SimplicialCholeskyBase< SimplicialCholesky< MatrixType_, UpLo_, Ordering_ > >.cols(), Eigen::SimplicialCholeskyBase< SimplicialLLT< MatrixType_, UpLo_, Ordering_ > >.cols(), Eigen::SimplicialCholeskyBase< SimplicialNonHermitianLDLT< MatrixType_, UpLo_, Ordering_ > >.cols(), Eigen::SimplicialCholeskyBase< SimplicialNonHermitianLLT< MatrixType_, UpLo_, Ordering_ > >.cols(), Eigen::SimplicialCholeskyBase< Derived >.cols(), Eigen::SimplicialCholeskyBase< SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > >.cols(), Eigen::BlockImpl< XprType, BlockRows, BlockCols, true, Sparse >.cols(), Eigen::internal::sparse_matrix_block_impl< SparseMatrixType, BlockRows, BlockCols >.cols(), Eigen::internal::sparse_matrix_block_impl< SparseMatrix< Scalar_, Options_, StorageIndex_ >, BlockRows, BlockCols >.cols(), Eigen::internal::sparse_matrix_block_impl< const SparseMatrix< Scalar_, Options_, StorageIndex_ >, BlockRows, BlockCols >.cols(), Eigen::BlockImpl< XprType, BlockRows, BlockCols, InnerPanel, Sparse >.cols(), Eigen::SparseMapBase< Derived, ReadOnlyAccessors >.cols(), Eigen::SparseMatrix< Scalar, ColMajor >.cols(), Eigen::SparseMatrix< Scalar, RowMajor, StorageIndex >.cols(), Eigen::SparseMatrix< Scalar, ColMajor, StorageIndex >.cols(), Eigen::SparseMatrix< double >.cols(), Eigen::SparseMatrix< Scalar_, Options_, StorageIndex_ >.cols(), Eigen::SparseMatrix< Scalar, RowMajor >.cols(), Eigen::SparseMatrix< Scalar, ColMajor, int >.cols(), Eigen::SparseMatrix< Scalar >.cols(), Eigen::SparseMatrixBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ > >.cols(), Eigen::SparseMatrixBase< Derived >.cols(), Eigen::SparseMatrixBase< SparseView< MatrixType > >.cols(), Eigen::SparseMatrixBase< BlockSparseMatrixT >.cols(), Eigen::SparseMatrixBase< SparseMatrix< Scalar, Options_, StorageIndex_ > >.cols(), Eigen::SparseMatrixBase< SparseMatrix< Scalar, Options_, int > >.cols(), Eigen::SparseMatrixBase< SparseMatrix< Scalar_, Options_, StorageIndex_ > >.cols(), Eigen::SparseMatrixBase< Transpose< MatrixType > >.cols(), Eigen::SparseMatrixBase< SparseVector< Scalar_, Options_, StorageIndex_ > >.cols(), Eigen::SparseMatrixBase< SparseMatrix< double, Options_, StorageIndex_ > >.cols(), Eigen::SparseMatrixBase< Block< SparseMatrixType, BlockRows, BlockCols, true > >.cols(), Eigen::SparseMatrixBase< Block< XprType, BlockRows, BlockCols, true > >.cols(), Eigen::SparseMatrixBase< Block< XprType, BlockRows, BlockCols, InnerPanel > >.cols(), Eigen::SparseMatrixBase< TriangularView< MatrixType, Mode > >.cols(), Eigen::SparseMatrixBase< CwiseBinaryOp< BinaryOp, Lhs, Rhs > >.cols(), Eigen::SparseMatrixBase< SparseMatrix< Scalar, Options_, StorageIndex > >.cols(), Eigen::SparseMatrixBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex > >.cols(), Eigen::SparseSelfAdjointView< MatrixType, Mode_ >.cols(), Eigen::SparseSymmetricPermutationProduct< MatrixType, Mode >.cols(), Eigen::SparseVector< Scalar_, Options_, StorageIndex_ >.cols(), Eigen::SparseView< MatrixType >.cols(), Eigen::SparseLUTransposeView< Conjugate, SparseLUType >.cols(), Eigen::SparseLU< MatrixType_, OrderingType_ >.cols(), Eigen::SparseLUMatrixLReturnType< MappedSupernodalType >.cols(), Eigen::SparseLUMatrixUReturnType< MatrixLType, MatrixUType >.cols(), Eigen::internal::MappedSuperNodalMatrix< Scalar, StorageIndex >.cols(), Eigen::internal::MappedSuperNodalMatrix< Scalar_, StorageIndex_ >.cols(), Eigen::SparseQR< MatrixType_, OrderingType_ >.cols(), Eigen::SparseQR_QProduct< SparseQRType, Derived >.cols(), Eigen::SparseQRMatrixQReturnType< SparseQRType >.cols(), Eigen::SPQR< MatrixType_ >.cols(), Eigen::SPQR_QProduct< SPQRType, Derived >.cols(), Eigen::SuperLUBase< MatrixType_, SuperLU< MatrixType_ > >.cols(), Eigen::SuperLUBase< MatrixType_, Derived >.cols(), Eigen::SVDBase< BDCSVD< MatrixType_, Options_ > >.cols(), Eigen::SVDBase< Derived >.cols(), Eigen::SVDBase< JacobiSVD< MatrixType_, Options_ > >.cols(), Eigen::UmfPackLU< MatrixType_ >.cols(), Eigen::internal::CoherentPadOp< XprType, SizeAtCompileTime_ >.cols(), Eigen::IncompleteLU< Scalar_ >.cols(), Eigen::KroneckerProductBase< KroneckerProduct< Lhs, Rhs > >.cols(), Eigen::KroneckerProductBase< KroneckerProductSparse< Lhs, Rhs > >.cols(), Eigen::KroneckerProductBase< Derived >.cols(), Eigen::MatrixExponentialReturnValue< Derived >.cols(), Eigen::MatrixFunctionReturnValue< Derived >.cols(), Eigen::MatrixLogarithmReturnValue< Derived >.cols(), Eigen::MatrixPowerParenthesesReturnValue< MatrixType >.cols(), Eigen::MatrixPower< MatrixType >.cols(), Eigen::MatrixPowerReturnValue< Derived >.cols(), Eigen::MatrixComplexPowerReturnValue< Derived >.cols(), Eigen::MatrixSquareRootReturnValue< Derived >.cols(), Eigen::BlockSparseMatrixView< BlockSparseMatrixT >.cols(), Eigen::BlockVectorView< BlockSparseMatrixT, VectorType >.cols(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex >.cols(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ >.cols(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex >::BlockInnerIterator.cols(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ >::BlockInnerIterator.cols(), Eigen::LDLT< MatrixType_, UpLo_ >.cols(), Eigen::LLT< MatrixType_, UpLo_ >.cols(), Eigen::ArrayWrapper< ExpressionType >.cols(), Eigen::MatrixWrapper< ExpressionType >.cols(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, Functor, BuiltIn >.cols(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, Functor, Specialized >.cols(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, Functor, Version >.cols(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op< DstEvaluatorTypeT::Scalar >, BuiltIn >.cols(), Eigen::internal::BandMatrixBase< BandMatrixWrapper< CoefficientsType_, Rows_, Cols_, Supers_, Subs_, Options_ > >.cols(), Eigen::internal::BandMatrixBase< Derived >.cols(), Eigen::internal::BandMatrixBase< BandMatrix< Scalar_, Rows, Cols, Supers, Subs, Options > >.cols(), Eigen::internal::EvalToTemp< ArgType >.cols(), Eigen::CwiseBinaryOp< BinaryOp, LhsType, RhsType >.cols(), Eigen::CwiseUnaryOp< UnaryOp, XprType >.cols(), Eigen::CwiseUnaryView< ViewOp, MatrixType, StrideType >.cols(), Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >.cols(), Eigen::DenseCoeffsBase< Derived, WriteAccessors >.cols(), Eigen::DenseCoeffsBase< Derived, DirectAccessors >.cols(), Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >.cols(), Eigen::Diagonal< MatrixType, DiagIndex_ >.cols(), Eigen::EigenBase< BandMatrixWrapper< CoefficientsType_, Rows_, Cols_, Supers_, Subs_, Options_ > >.cols(), Eigen::EigenBase< MatrixReplacement >.cols(), Eigen::EigenBase< Block< SparseMatrixType, BlockRows, BlockCols, true > >.cols(), Eigen::EigenBase< HouseholderSequence< VectorsType, CoeffsType, Side > >.cols(), Eigen::EigenBase< SparseSelfAdjointView< MatrixType, Mode_ > >.cols(), Eigen::EigenBase< Block< XprType, BlockRows, BlockCols, InnerPanel > >.cols(), Eigen::EigenBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex > >.cols(), Eigen::EigenBase< SparseMatrix< double, Options_, StorageIndex_ > >.cols(), Eigen::EigenBase< SparseQRMatrixQReturnType< SparseQRType > >.cols(), Eigen::EigenBase< Derived >.cols(), Eigen::EigenBase< CwiseBinaryOp< BinaryOp, Lhs, Rhs > >.cols(), Eigen::EigenBase< SparseMatrix< Scalar, Options_, StorageIndex > >.cols(), Eigen::EigenBase< Inverse< PermutationType > >.cols(), Eigen::EigenBase< SparseMatrix< Scalar_, Options_, StorageIndex_ > >.cols(), Eigen::EigenBase< SparseSymmetricPermutationProduct< MatrixType, Mode > >.cols(), Eigen::EigenBase< SparseView< MatrixType > >.cols(), Eigen::EigenBase< Block< XprType, BlockRows, BlockCols, true > >.cols(), Eigen::EigenBase< SparseMatrix< Scalar, Options_, int > >.cols(), Eigen::EigenBase< Transpose< MatrixType > >.cols(), Eigen::EigenBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ > >.cols(), Eigen::EigenBase< SparseVector< Scalar_, Options_, StorageIndex_ > >.cols(), Eigen::EigenBase< BandMatrix< Scalar_, Rows, Cols, Supers, Subs, Options > >.cols(), Eigen::EigenBase< SparseMatrix< Scalar, Options_, StorageIndex_ > >.cols(), Eigen::EigenBase< BlockSparseMatrixT >.cols(), Eigen::EigenBase< TriangularView< MatrixType, Mode > >.cols(), Eigen::ForceAlignedAccess< ExpressionType >.cols(), Eigen::Inverse< XprType >.cols(), Eigen::MapBase< Derived, ReadOnlyAccessors >.cols(), Eigen::NestByValue< ExpressionType >.cols(), Eigen::PlainObjectBase< Array< Scalar_, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.cols(), Eigen::PlainObjectBase< Array< Index, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.cols(), Eigen::PlainObjectBase< Array< double, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.cols(), Eigen::PlainObjectBase< Array< int, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.cols(), Eigen::PlainObjectBase< Array< StorageIndex, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.cols(), Eigen::PlainObjectBase< Derived >.cols(), Eigen::PlainObjectBase< Matrix< Scalar_, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.cols(), Eigen::PlainObjectBase< Array< RealScalar, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.cols(), Eigen::Product< Lhs, Rhs >.cols(), Eigen::Product< Lhs_, Rhs_, Option >.cols(), Eigen::ReturnByValue< HessenbergDecompositionMatrixHReturnType< MatrixType > >.cols(), Eigen::ReturnByValue< MatrixFunctionReturnValue< Derived > >.cols(), Eigen::ReturnByValue< homogeneous_left_product_impl< Homogeneous< MatrixType, Vertical >, Lhs > >.cols(), Eigen::ReturnByValue< Derived >.cols(), Eigen::ReturnByValue< image_retval_base< DecompositionType_ > >.cols(), Eigen::ReturnByValue< MatrixExponentialReturnValue< Derived > >.cols(), Eigen::ReturnByValue< TridiagonalizationMatrixTReturnType< MatrixType > >.cols(), Eigen::ReturnByValue< MatrixPowerParenthesesReturnValue< MatrixType > >.cols(), Eigen::ReturnByValue< triangular_solve_retval< Side, TriangularType, Rhs > >.cols(), Eigen::ReturnByValue< MatrixPowerReturnValue< Derived > >.cols(), Eigen::ReturnByValue< FullPivHouseholderQRMatrixQReturnType< MatrixType, PermutationIndex > >.cols(), Eigen::ReturnByValue< MatrixLogarithmReturnValue< Derived > >.cols(), Eigen::ReturnByValue< SparseQR_QProduct< SparseQRType, Derived > >.cols(), Eigen::ReturnByValue< MatrixComplexPowerReturnValue< Derived > >.cols(), Eigen::ReturnByValue< homogeneous_right_product_impl< Homogeneous< MatrixType, Horizontal >, Rhs > >.cols(), Eigen::ReturnByValue< MatrixSquareRootReturnValue< Derived > >.cols(), Eigen::ReturnByValue< kernel_retval_base< DecompositionType_ > >.cols(), Eigen::ReturnByValue< SPQR_QProduct< SPQRType, Derived > >.cols(), Eigen::Reverse< MatrixType, Direction >.cols(), Eigen::Select< ConditionMatrixType, ThenMatrixType, ElseMatrixType >.cols(), Eigen::SelfAdjointView< MatrixType_, UpLo >.cols(), Eigen::Solve< Decomposition, RhsType >.cols(), Eigen::internal::triangular_solve_retval< Side, TriangularType, Rhs >.cols(), Eigen::Transpose< MatrixType >.cols(), Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >.cols(), Eigen::TriangularBase< SelfAdjointView< MatrixType_, UpLo > >.cols(), Eigen::TriangularBase< Derived >.cols(), Eigen::TriangularBase< TriangularView< MatrixType_, Mode_ > >.cols(), Eigen::TriangularView< MatrixType_, Mode_ >.cols(), Eigen::PartialReduxExpr< MatrixType, MemberOp, Direction >.cols(), Eigen::internal::visitor_evaluator< XprType >.cols(), Eigen::internal::TridiagonalizationMatrixTReturnType< MatrixType >.cols(), Eigen::Homogeneous< MatrixType, Direction_ >.cols(), Eigen::internal::homogeneous_left_product_impl< Homogeneous< MatrixType, Vertical >, Lhs >.cols(), Eigen::internal::homogeneous_right_product_impl< Homogeneous< MatrixType, Horizontal >, Rhs >.cols(), Eigen::Transform< Scalar_, Dim_, Mode_, Options_ >.cols(), Eigen::HouseholderSequence< VectorsType, CoeffsType, Side >.cols(), Eigen::DiagonalPreconditioner< Scalar_ >.cols(), Eigen::IncompleteCholesky< Scalar, UpLo_, OrderingType_ >.cols(), Eigen::IncompleteLUT< Scalar_, StorageIndex_ >.cols(), Eigen::IterativeSolverBase< Derived >.cols(), Eigen::IterativeSolverBase< LeastSquaresConjugateGradient< MatrixType_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< IDRS< MatrixType_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< MINRES< MatrixType_, UpLo_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< BiCGSTABL< MatrixType_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< DGMRES< MatrixType_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< ConjugateGradient< MatrixType_, UpLo_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< GMRES< MatrixType_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< IDRSTABL< MatrixType_, Preconditioner_ > >.cols(), Eigen::IterativeSolverBase< BiCGSTAB< MatrixType_, Preconditioner_ > >.cols(), Eigen::SolveWithGuess< Decomposition, RhsType, GuessType >.cols(), Eigen::KLU< MatrixType_ >.cols(), Eigen::FullPivLU< MatrixType_, PermutationIndex_ >.cols(), Eigen::PartialPivLU< Matrix< Scalar, Dynamic, Dynamic > >.cols(), Eigen::PartialPivLU< MatrixType_, PermutationIndex_ >.cols(), Eigen::Serializer< SparseMatrix< Scalar, Options, StorageIndex >, void >::Header.cols, Eigen::BDCSVD< MatrixType_, Options >.cols(), Eigen::BDCSVD< MatrixType_, Options_ >.cols(), Eigen::JacobiSVD< MatrixType, ComputationOptions >.cols(), Eigen::JacobiSVD< MatrixType_, Options_ >.cols(), gdb.printers.EigenSparseMatrixPrinter.cols(), NurbsUtils::array2< T >.cols, gdb.printers._MatrixEntryIterator.currentCol, gdb.printers._MatrixEntryIterator.currentRow, gdb.printers._MatrixEntryIterator.rowMajor, gdb.printers.EigenMatrixPrinter.rowMajor, gdb.printers.EigenSparseMatrixPrinter.rowMajor, gdb.printers._MatrixEntryIterator.rows, gdb.printers.EigenMatrixPrinter.rows, gdb.printers.EigenMatrixPrinter._Iterator.rows, MatrixReplacement.rows(), Eigen::AccelerateImpl< MatrixType_, UpLo_, Solver_, EnforceSquare_ >.rows(), Eigen::CholmodBase< MatrixType_, UpLo_, Derived >.rows(), Eigen::CholmodBase< MatrixType_, Lower, CholmodSupernodalLLT< MatrixType_, Lower > >.rows(), Eigen::CholmodBase< MatrixType_, Lower, CholmodSimplicialLDLT< MatrixType_, Lower > >.rows(), Eigen::CholmodBase< MatrixType_, Lower, CholmodSimplicialLLT< MatrixType_, Lower > >.rows(), Eigen::CholmodBase< MatrixType_, Lower, CholmodDecomposition< MatrixType_, Lower > >.rows(), Eigen::internal::quad_traits< Scalar >.rows, Eigen::internal::quad_traits< double >.rows, Eigen::internal::quad_traits< bfloat16 >.rows, Eigen::internal::BandMatrix< Scalar_, Rows, Cols, Supers, Subs, Options >.rows(), Eigen::internal::BandMatrix< RealScalar, ColsAtCompileTime, ColsAtCompileTime, 1, 0, RowMajor >.rows(), Eigen::internal::BandMatrix< Scalar, Size, Size, Options &SelfAdjoint ? 0 :1, 1, Options|RowMajor >.rows(), Eigen::internal::BandMatrixWrapper< CoefficientsType_, Rows_, Cols_, Supers_, Subs_, Options_ >.rows(), Eigen::internal::BlockImpl_dense< XprType, BlockRows, BlockCols, InnerPanel, HasDirectAccess >.rows(), Eigen::internal::BlockImpl_dense< XprType, BlockRows, BlockCols, InnerPanel >.rows(), Eigen::internal::unary_evaluator< CwiseUnaryOp< core_cast_op< SrcType, DstType >, ArgType >, IndexBased >.rows(), Eigen::CwiseNullaryOp< Eigen::internal::linspaced_op< Scalar >, PlainObject >.rows(), Eigen::CwiseNullaryOp< NullaryOp, PlainObjectType >.rows(), Eigen::CwiseTernaryOp< TernaryOp, Arg1Type, Arg2Type, Arg3Type >.rows(), Eigen::internal::DenseStorage_impl< T, Size, Rows, Cols, Options >.rows(), Eigen::internal::DenseStorage_impl< T, Size, Dynamic, Cols, Options >.rows(), Eigen::internal::DenseStorage_impl< T, Size, Rows, Dynamic, Options >.rows(), Eigen::internal::DenseStorage_impl< T, Size, Dynamic, Dynamic, Options >.rows(), Eigen::internal::DenseStorage_impl< T, 0, Rows, Cols, Options >.rows(), Eigen::internal::DenseStorage_impl< T, 0, Dynamic, Cols, Options >.rows(), Eigen::internal::DenseStorage_impl< T, 0, Rows, Dynamic, Options >.rows(), Eigen::internal::DenseStorage_impl< T, 0, Dynamic, Dynamic, Options >.rows(), Eigen::internal::DenseStorage_impl< T, Dynamic, Dynamic, Cols, Options >.rows(), Eigen::internal::DenseStorage_impl< T, Dynamic, Rows, Dynamic, Options >.rows(), Eigen::internal::DenseStorage_impl< T, Dynamic, Dynamic, Dynamic, Options >.rows(), Eigen::Diagonal< MatrixType, DiagIndex_ >.rows(), Eigen::DiagonalBase< DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime > >.rows(), Eigen::DiagonalBase< DiagonalWrapper< DiagonalVectorType_ > >.rows(), Eigen::DiagonalBase< Derived >.rows(), Eigen::internal::IndexedViewImpl< XprType, RowIndices, ColIndices, StorageKind, false >.rows(), Eigen::internal::IndexedViewImpl< XprType, RowIndices, ColIndices, internal::traits< XprType >::StorageKind,(internal::traits< IndexedView< XprType, RowIndices, ColIndices > >::Flags &DirectAccessBit) !=0 >.rows(), Eigen::internal::IndexedViewImpl< XprType, RowIndices, ColIndices, StorageKind, DirectAccess >.rows(), Eigen::PermutationBase< PermutationWrapper< IndicesType_ > >.rows(), Eigen::PermutationBase< Derived >.rows(), Eigen::PermutationBase< Map< PermutationMatrix< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ >, PacketAccess_ > >.rows(), Eigen::PermutationBase< PermutationMatrix< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ > >.rows(), Eigen::Replicate< MatrixType, RowFactor, ColFactor >.rows(), Eigen::internal::ReshapedImpl_dense< XprType, Rows, Cols, Order, false >.rows(), Eigen::SkewSymmetricBase< Derived >.rows(), Eigen::SkewSymmetricBase< SkewSymmetricMatrix3< Scalar_ > >.rows(), Eigen::SkewSymmetricBase< SkewSymmetricWrapper< SkewSymmetricVectorType_ > >.rows(), Eigen::TranspositionsBase< Derived >.rows(), Eigen::TranspositionsBase< Map< Transpositions< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ >, PacketAccess > >.rows(), Eigen::TranspositionsBase< TranspositionsWrapper< IndicesType_ > >.rows(), Eigen::TranspositionsBase< Transpositions< SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_ > >.rows(), Eigen::Serializer< DenseBase< Derived >, void >::Header.rows, Eigen::internal::HessenbergDecompositionMatrixHReturnType< MatrixType >.rows(), Eigen::internal::image_retval_base< DecompositionType_ >.rows(), Eigen::internal::image_retval_base< FullPivLU< MatrixType_, PermutationIndex_ > >.rows(), Eigen::internal::kernel_retval_base< DecompositionType_ >.rows(), Eigen::internal::kernel_retval_base< FullPivLU< MatrixType_, PermutationIndex_ > >.rows(), Eigen::PardisoImpl< Derived >.rows(), Eigen::PardisoImpl< PardisoLLT< MatrixType, UpLo_ > >.rows(), Eigen::PardisoImpl< PardisoLDLT< MatrixType, Options > >.rows(), Eigen::PardisoImpl< PardisoLU< MatrixType > >.rows(), Eigen::PastixBase< Derived >.rows(), Eigen::PastixBase< PastixLLT< MatrixType_, UpLo_ > >.rows(), Eigen::PastixBase< PastixLDLT< MatrixType_, UpLo_ > >.rows(), Eigen::PastixBase< PastixLU< MatrixType_ > >.rows(), Eigen::ColPivHouseholderQR< MatrixType >.rows(), Eigen::ColPivHouseholderQR< MatrixType_, PermutationIndex_ >.rows(), Eigen::ColPivHouseholderQR< MatrixType, PermutationIndex >.rows(), Eigen::ColPivHouseholderQR< TransposeTypeWithSameStorageOrder >.rows(), Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >.rows(), Eigen::FullPivHouseholderQR< TransposeTypeWithSameStorageOrder >.rows(), Eigen::FullPivHouseholderQR< MatrixType_, PermutationIndex_ >.rows(), Eigen::FullPivHouseholderQR< MatrixType >.rows(), Eigen::internal::FullPivHouseholderQRMatrixQReturnType< MatrixType, PermutationIndex >.rows(), Eigen::HouseholderQR< MatrixType >.rows(), Eigen::HouseholderQR< TransposeTypeWithSameStorageOrder >.rows(), Eigen::HouseholderQR< Eigen::Matrix >.rows(), Eigen::HouseholderQR< MatrixType_ >.rows(), Eigen::SimplicialCholeskyBase< SimplicialNonHermitianLLT< MatrixType_, UpLo_, Ordering_ > >.rows(), Eigen::SimplicialCholeskyBase< SimplicialCholesky< MatrixType_, UpLo_, Ordering_ > >.rows(), Eigen::SimplicialCholeskyBase< Derived >.rows(), Eigen::SimplicialCholeskyBase< SimplicialLLT< MatrixType_, UpLo_, Ordering_ > >.rows(), Eigen::SimplicialCholeskyBase< SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > >.rows(), Eigen::SimplicialCholeskyBase< SimplicialNonHermitianLDLT< MatrixType_, UpLo_, Ordering_ > >.rows(), Eigen::BlockImpl< XprType, BlockRows, BlockCols, true, Sparse >.rows(), Eigen::internal::sparse_matrix_block_impl< const SparseMatrix< Scalar_, Options_, StorageIndex_ >, BlockRows, BlockCols >.rows(), Eigen::internal::sparse_matrix_block_impl< SparseMatrixType, BlockRows, BlockCols >.rows(), Eigen::internal::sparse_matrix_block_impl< SparseMatrix< Scalar_, Options_, StorageIndex_ >, BlockRows, BlockCols >.rows(), Eigen::BlockImpl< XprType, BlockRows, BlockCols, InnerPanel, Sparse >.rows(), Eigen::SparseMapBase< Derived, ReadOnlyAccessors >.rows(), Eigen::SparseMatrix< Scalar, RowMajor, StorageIndex >.rows(), Eigen::SparseMatrix< Scalar, ColMajor, int >.rows(), Eigen::SparseMatrix< Scalar_, Options_, StorageIndex_ >.rows(), Eigen::SparseMatrix< Scalar, ColMajor >.rows(), Eigen::SparseMatrix< Scalar, RowMajor >.rows(), Eigen::SparseMatrix< double >.rows(), Eigen::SparseMatrix< Scalar >.rows(), Eigen::SparseMatrix< Scalar, ColMajor, StorageIndex >.rows(), Eigen::Serializer< SparseMatrix< Scalar, Options, StorageIndex >, void >::Header.rows, Eigen::SparseMatrixBase< TriangularView< MatrixType, Mode > >.rows(), Eigen::SparseMatrixBase< Block< XprType, BlockRows, BlockCols, true > >.rows(), Eigen::SparseMatrixBase< SparseView< MatrixType > >.rows(), Eigen::SparseMatrixBase< SparseMatrix< Scalar, Options_, int > >.rows(), Eigen::SparseMatrixBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex > >.rows(), Eigen::SparseMatrixBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ > >.rows(), Eigen::SparseMatrixBase< Block< SparseMatrixType, BlockRows, BlockCols, true > >.rows(), Eigen::SparseMatrixBase< Derived >.rows(), Eigen::SparseMatrixBase< SparseMatrix< Scalar_, Options_, StorageIndex_ > >.rows(), Eigen::SparseMatrixBase< Transpose< MatrixType > >.rows(), Eigen::SparseMatrixBase< SparseMatrix< Scalar, Options_, StorageIndex_ > >.rows(), Eigen::SparseMatrixBase< BlockSparseMatrixT >.rows(), Eigen::SparseMatrixBase< Block< XprType, BlockRows, BlockCols, InnerPanel > >.rows(), Eigen::SparseMatrixBase< SparseMatrix< Scalar, Options_, StorageIndex > >.rows(), Eigen::SparseMatrixBase< SparseVector< Scalar_, Options_, StorageIndex_ > >.rows(), Eigen::SparseMatrixBase< SparseMatrix< double, Options_, StorageIndex_ > >.rows(), Eigen::SparseMatrixBase< CwiseBinaryOp< BinaryOp, Lhs, Rhs > >.rows(), Eigen::SparseSelfAdjointView< MatrixType, Mode_ >.rows(), Eigen::SparseSymmetricPermutationProduct< MatrixType, Mode >.rows(), Eigen::SparseVector< Scalar_, Options_, StorageIndex_ >.rows(), Eigen::SparseView< MatrixType >.rows(), Eigen::SparseLUTransposeView< Conjugate, SparseLUType >.rows(), Eigen::SparseLU< MatrixType_, OrderingType_ >.rows(), Eigen::SparseLUMatrixLReturnType< MappedSupernodalType >.rows(), Eigen::SparseLUMatrixUReturnType< MatrixLType, MatrixUType >.rows(), Eigen::internal::MappedSuperNodalMatrix< Scalar, StorageIndex >.rows(), Eigen::internal::MappedSuperNodalMatrix< Scalar_, StorageIndex_ >.rows(), Eigen::SparseQR< MatrixType_, OrderingType_ >.rows(), Eigen::SparseQR_QProduct< SparseQRType, Derived >.rows(), Eigen::SparseQRMatrixQReturnType< SparseQRType >.rows(), Eigen::SPQR< MatrixType_ >.rows(), Eigen::SPQR_QProduct< SPQRType, Derived >.rows(), Eigen::SuperLUBase< MatrixType_, SuperLU< MatrixType_ > >.rows(), Eigen::SuperLUBase< MatrixType_, Derived >.rows(), Eigen::SVDBase< Derived >.rows(), Eigen::SVDBase< BDCSVD< MatrixType_, Options_ > >.rows(), Eigen::SVDBase< JacobiSVD< MatrixType_, Options_ > >.rows(), Eigen::UmfPackLU< MatrixType_ >.rows(), Eigen::internal::CoherentPadOp< XprType, SizeAtCompileTime_ >.rows(), Eigen::IncompleteLU< Scalar_ >.rows(), Eigen::KroneckerProductBase< KroneckerProduct< Lhs, Rhs > >.rows(), Eigen::KroneckerProductBase< Derived >.rows(), Eigen::KroneckerProductBase< KroneckerProductSparse< Lhs, Rhs > >.rows(), Eigen::MatrixExponentialReturnValue< Derived >.rows(), Eigen::MatrixFunctionReturnValue< Derived >.rows(), Eigen::MatrixLogarithmReturnValue< Derived >.rows(), Eigen::MatrixPowerParenthesesReturnValue< MatrixType >.rows(), Eigen::MatrixPower< MatrixType >.rows(), Eigen::MatrixPowerReturnValue< Derived >.rows(), Eigen::MatrixComplexPowerReturnValue< Derived >.rows(), Eigen::MatrixSquareRootReturnValue< Derived >.rows(), Eigen::BlockSparseMatrixView< BlockSparseMatrixT >.rows(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ >.rows(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex >.rows(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ >::BlockInnerIterator.rows(), Eigen::BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex >::BlockInnerIterator.rows(), Eigen::LDLT< MatrixType_, UpLo_ >.rows(), Eigen::LLT< MatrixType_, UpLo_ >.rows(), Eigen::ArrayWrapper< ExpressionType >.rows(), Eigen::MatrixWrapper< ExpressionType >.rows(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, Functor, Version >.rows(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, Functor, BuiltIn >.rows(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op< DstEvaluatorTypeT::Scalar >, BuiltIn >.rows(), Eigen::internal::generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, Functor, Specialized >.rows(), Eigen::internal::BandMatrixBase< BandMatrixWrapper< CoefficientsType_, Rows_, Cols_, Supers_, Subs_, Options_ > >.rows(), Eigen::internal::BandMatrixBase< BandMatrix< Scalar_, Rows, Cols, Supers, Subs, Options > >.rows(), Eigen::internal::BandMatrixBase< Derived >.rows(), Eigen::internal::EvalToTemp< ArgType >.rows(), Eigen::CwiseBinaryOp< BinaryOp, LhsType, RhsType >.rows(), Eigen::CwiseUnaryOp< UnaryOp, XprType >.rows(), Eigen::CwiseUnaryView< ViewOp, MatrixType, StrideType >.rows(), Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >.rows(), Eigen::DenseCoeffsBase< Derived, WriteAccessors >.rows(), Eigen::DenseCoeffsBase< Derived, DirectAccessors >.rows(), Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >.rows(), Eigen::EigenBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex > >.rows(), Eigen::EigenBase< Derived >.rows(), Eigen::EigenBase< SparseQRMatrixQReturnType< SparseQRType > >.rows(), Eigen::EigenBase< SparseMatrix< Scalar, Options_, StorageIndex > >.rows(), Eigen::EigenBase< Block< SparseMatrixType, BlockRows, BlockCols, true > >.rows(), Eigen::EigenBase< BandMatrixWrapper< CoefficientsType_, Rows_, Cols_, Supers_, Subs_, Options_ > >.rows(), Eigen::EigenBase< BlockSparseMatrix< Scalar_, _BlockAtCompileTime, Options_, StorageIndex_ > >.rows(), Eigen::EigenBase< SparseSelfAdjointView< MatrixType, Mode_ > >.rows(), Eigen::EigenBase< TriangularView< MatrixType, Mode > >.rows(), Eigen::EigenBase< SparseVector< Scalar_, Options_, StorageIndex_ > >.rows(), Eigen::EigenBase< SparseMatrix< double, Options_, StorageIndex_ > >.rows(), Eigen::EigenBase< BlockSparseMatrixT >.rows(), Eigen::EigenBase< Block< XprType, BlockRows, BlockCols, true > >.rows(), Eigen::EigenBase< SparseMatrix< Scalar_, Options_, StorageIndex_ > >.rows(), Eigen::EigenBase< SparseMatrix< Scalar, Options_, StorageIndex_ > >.rows(), Eigen::EigenBase< HouseholderSequence< VectorsType, CoeffsType, Side > >.rows(), Eigen::EigenBase< Inverse< PermutationType > >.rows(), Eigen::EigenBase< MatrixReplacement >.rows(), Eigen::EigenBase< CwiseBinaryOp< BinaryOp, Lhs, Rhs > >.rows(), Eigen::EigenBase< SparseView< MatrixType > >.rows(), Eigen::EigenBase< Block< XprType, BlockRows, BlockCols, InnerPanel > >.rows(), Eigen::EigenBase< SparseMatrix< Scalar, Options_, int > >.rows(), Eigen::EigenBase< SparseSymmetricPermutationProduct< MatrixType, Mode > >.rows(), Eigen::EigenBase< BandMatrix< Scalar_, Rows, Cols, Supers, Subs, Options > >.rows(), Eigen::EigenBase< Transpose< MatrixType > >.rows(), Eigen::ForceAlignedAccess< ExpressionType >.rows(), Eigen::Inverse< XprType >.rows(), Eigen::MapBase< Derived, ReadOnlyAccessors >.rows(), Eigen::NestByValue< ExpressionType >.rows(), Eigen::PlainObjectBase< Matrix< Scalar_, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.rows(), Eigen::PlainObjectBase< Derived >.rows(), Eigen::PlainObjectBase< Array< RealScalar, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.rows(), Eigen::PlainObjectBase< Array< StorageIndex, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.rows(), Eigen::PlainObjectBase< Array< Index, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.rows(), Eigen::PlainObjectBase< Array< double, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.rows(), Eigen::PlainObjectBase< Array< Scalar_, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.rows(), Eigen::PlainObjectBase< Array< int, Rows_, Cols_, Options_, MaxRows_, MaxCols_ > >.rows(), Eigen::Product< Lhs_, Rhs_, Option >.rows(), Eigen::Product< Lhs, Rhs >.rows(), Eigen::ReturnByValue< FullPivHouseholderQRMatrixQReturnType< MatrixType, PermutationIndex > >.rows(), Eigen::ReturnByValue< homogeneous_left_product_impl< Homogeneous< MatrixType, Vertical >, Lhs > >.rows(), Eigen::ReturnByValue< triangular_solve_retval< Side, TriangularType, Rhs > >.rows(), Eigen::ReturnByValue< MatrixSquareRootReturnValue< Derived > >.rows(), Eigen::ReturnByValue< MatrixPowerParenthesesReturnValue< MatrixType > >.rows(), Eigen::ReturnByValue< MatrixPowerReturnValue< Derived > >.rows(), Eigen::ReturnByValue< homogeneous_right_product_impl< Homogeneous< MatrixType, Horizontal >, Rhs > >.rows(), Eigen::ReturnByValue< MatrixFunctionReturnValue< Derived > >.rows(), Eigen::ReturnByValue< MatrixComplexPowerReturnValue< Derived > >.rows(), Eigen::ReturnByValue< kernel_retval_base< DecompositionType_ > >.rows(), Eigen::ReturnByValue< Derived >.rows(), Eigen::ReturnByValue< MatrixExponentialReturnValue< Derived > >.rows(), Eigen::ReturnByValue< MatrixLogarithmReturnValue< Derived > >.rows(), Eigen::ReturnByValue< SPQR_QProduct< SPQRType, Derived > >.rows(), Eigen::ReturnByValue< HessenbergDecompositionMatrixHReturnType< MatrixType > >.rows(), Eigen::ReturnByValue< image_retval_base< DecompositionType_ > >.rows(), Eigen::ReturnByValue< SparseQR_QProduct< SparseQRType, Derived > >.rows(), Eigen::ReturnByValue< TridiagonalizationMatrixTReturnType< MatrixType > >.rows(), Eigen::Reverse< MatrixType, Direction >.rows(), Eigen::Select< ConditionMatrixType, ThenMatrixType, ElseMatrixType >.rows(), Eigen::SelfAdjointView< MatrixType_, UpLo >.rows(), Eigen::Solve< Decomposition, RhsType >.rows(), Eigen::internal::triangular_solve_retval< Side, TriangularType, Rhs >.rows(), Eigen::Transpose< MatrixType >.rows(), Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >.rows(), Eigen::TriangularBase< SelfAdjointView< MatrixType_, UpLo > >.rows(), Eigen::TriangularBase< TriangularView< MatrixType_, Mode_ > >.rows(), Eigen::TriangularBase< Derived >.rows(), Eigen::TriangularView< MatrixType_, Mode_ >.rows(), Eigen::PartialReduxExpr< MatrixType, MemberOp, Direction >.rows(), Eigen::internal::visitor_evaluator< XprType >.rows(), Eigen::internal::TridiagonalizationMatrixTReturnType< MatrixType >.rows(), Eigen::Homogeneous< MatrixType, Direction_ >.rows(), Eigen::internal::homogeneous_left_product_impl< Homogeneous< MatrixType, Vertical >, Lhs >.rows(), Eigen::internal::homogeneous_right_product_impl< Homogeneous< MatrixType, Horizontal >, Rhs >.rows(), Eigen::Transform< Scalar_, Dim_, Mode_, Options_ >.rows(), Eigen::HouseholderSequence< VectorsType, CoeffsType, Side >.rows(), Eigen::DiagonalPreconditioner< Scalar_ >.rows(), Eigen::IncompleteCholesky< Scalar, UpLo_, OrderingType_ >.rows(), Eigen::IncompleteLUT< Scalar_, StorageIndex_ >.rows(), Eigen::IterativeSolverBase< GMRES< MatrixType_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< IDRSTABL< MatrixType_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< DGMRES< MatrixType_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< ConjugateGradient< MatrixType_, UpLo_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< IDRS< MatrixType_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< BiCGSTABL< MatrixType_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< LeastSquaresConjugateGradient< MatrixType_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< BiCGSTAB< MatrixType_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< MINRES< MatrixType_, UpLo_, Preconditioner_ > >.rows(), Eigen::IterativeSolverBase< Derived >.rows(), Eigen::SolveWithGuess< Decomposition, RhsType, GuessType >.rows(), Eigen::KLU< MatrixType_ >.rows(), Eigen::FullPivLU< MatrixType_, PermutationIndex_ >.rows(), Eigen::PartialPivLU< Matrix< Scalar, Dynamic, Dynamic > >.rows(), Eigen::PartialPivLU< MatrixType_, PermutationIndex_ >.rows(), Eigen::BDCSVD< MatrixType_, Options >.rows(), Eigen::BDCSVD< MatrixType_, Options_ >.rows(), Eigen::JacobiSVD< MatrixType, ComputationOptions >.rows(), Eigen::JacobiSVD< MatrixType_, Options_ >.rows(), gdb.printers.EigenSparseMatrixPrinter.rows(), and NurbsUtils::array2< T >.rows.

Referenced by gdb.printers._MatrixEntryIterator.next(), and gdb.printers.EigenQuaternionPrinter._Iterator.next().

◆ next()

def gdb.printers._MatrixEntryIterator.next (   self)

Member Data Documentation

◆ cols

◆ currentCol

gdb.printers._MatrixEntryIterator.currentCol

◆ currentRow

gdb.printers._MatrixEntryIterator.currentRow

◆ rowMajor

◆ rows


The documentation for this class was generated from the following file: