Home | History | Annotate | Download | only in MatrixFunctions

Lines Matching refs:Index

20 void matrix_sqrt_quasi_triangular_2x2_diagonal_block(const MatrixType& T, typename MatrixType::Index i, ResultType& sqrtT)
35 void matrix_sqrt_quasi_triangular_1x1_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT)
44 void matrix_sqrt_quasi_triangular_1x2_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT)
57 void matrix_sqrt_quasi_triangular_2x1_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT)
104 void matrix_sqrt_quasi_triangular_2x2_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT)
123 typedef typename MatrixType::Index Index;
124 const Index size = T.rows();
125 for (Index i = 0; i < size; i++) {
142 typedef typename MatrixType::Index Index;
143 const Index size = T.rows();
144 for (Index j = 1; j < size; j++) {
147 for (Index i = j-1; i >= 0; i--) {
209 typedef typename MatrixType::Index Index;
217 for (Index i = 0; i < arg.rows(); i++) {
220 for (Index j = 1; j < arg.cols(); j++) {
221 for (Index i = j-1; i >= 0; i--) {
321 typedef typename Derived::Index Index;
346 Index rows() const { return m_src.rows(); }
347 Index cols() const { return m_src.cols(); }