Lines Matching full: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()
140 …RealScalar normTminusI = (T - MatrixType::Identity(T.rows(), T.rows())).cwiseAbs().colwise().sum()… in computeBig()
241 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade3()
242 result.setZero(T.rows(), T.rows()); in computePade3()
244 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade3()
257 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade4()
258 result.setZero(T.rows(), T.rows()); in computePade4()
260 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade4()
275 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade5()
276 result.setZero(T.rows(), T.rows()); in computePade5()
278 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade5()
293 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade6()
294 result.setZero(T.rows(), T.rows()); in computePade6()
296 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade6()
313 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade7()
314 result.setZero(T.rows(), T.rows()); in computePade7()
316 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade7()
333 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade8()
334 result.setZero(T.rows(), T.rows()); in computePade8()
336 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade8()
355 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade9()
356 result.setZero(T.rows(), T.rows()); in computePade9()
358 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade9()
377 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade10()
378 result.setZero(T.rows(), T.rows()); in computePade10()
380 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade10()
401 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows()); in computePade11()
402 result.setZero(T.rows(), T.rows()); in computePade11()
404 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI) in computePade11()
456 Index rows() const { return m_A.rows(); } in rows() function
480 eigen_assert(rows() == cols());