Lines Matching refs:rows
85 MatrixType result(A.rows(), A.rows()); in compute()
86 if (A.rows() == 1) in compute()
88 else if (A.rows() == 2) in compute()
151 …RealScalar normTminusI = (T - MatrixType::Identity(T.rows(), T.rows())).cwiseAbs().colwise().sum()… in computeBig()
250 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade3()
251 result.setZero(T.rows(), T.rows()); in computePade3()
253 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade3()
266 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade4()
267 result.setZero(T.rows(), T.rows()); in computePade4()
269 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade4()
284 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade5()
285 result.setZero(T.rows(), T.rows()); in computePade5()
287 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade5()
302 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade6()
303 result.setZero(T.rows(), T.rows()); in computePade6()
305 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade6()
322 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade7()
323 result.setZero(T.rows(), T.rows()); in computePade7()
325 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade7()
342 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade8()
343 result.setZero(T.rows(), T.rows()); in computePade8()
345 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade8()
364 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade9()
365 result.setZero(T.rows(), T.rows()); in computePade9()
367 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade9()
386 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade10()
387 result.setZero(T.rows(), T.rows()); in computePade10()
389 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade10()
410 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade11()
411 result.setZero(T.rows(), T.rows()); in computePade11()
413 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade11()
465 Index rows() const { return m_A.rows(); } in rows() function
489 eigen_assert(rows() == cols());