Searched refs:m_matU (Results 1 – 5 of 5) sorted by relevance
/external/eigen/Eigen/src/Eigen2Support/ |
D | SVD.h | 54 : m_matU(matrix.rows(), (std::min)(matrix.rows(), matrix.cols())), in SVD() 64 const MatrixUType& matrixU() const { return m_matU; } in matrixU() 82 MatrixUType m_matU; 102 m_matU.resize(m, nu); in compute() 103 m_matU.setZero(); in compute() 152 m_matU.col(k).end(m-k) = matA.col(k).end(m-k); in compute() 197 m_matU.col(j).setZero(); in compute() 198 m_matU(j,j) = 1.0; in compute() 206 …Scalar t = m_matU.col(k).end(m-k).eigen2_dot(m_matU.col(j).end(m-k)); // FIXME is it really a dot … in compute() 207 t = -t/m_matU(k,k); in compute() [all …]
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | ComplexSchur.h | 96 m_matU(size,size), in m_matT() 114 m_matU(matrix.rows(),matrix.cols()), 141 return m_matU; in matrixU() 246 ComplexMatrixType m_matT, m_matU; 324 if(computeU) m_matU = ComplexMatrixType::Identity(1,1); 332 computeFromHessenberg(m_matT, m_matU, computeU); 342 m_matU = matrixQ; 357 if(computeU) _this.m_matU = _this.m_hess.matrixQ(); 375 _this.m_matU = Q.template cast<ComplexScalar>(); 433 if(computeU) m_matU.applyOnTheRight(il, il+1, rot); [all …]
|
D | ComplexSchur_MKL.h | 58 if(computeU) m_matU = ComplexMatrixType::Identity(1,1); \ 70 m_matU.resize(n, n); \ 71 lapack_int ldvs = m_matU.outerStride(); \ 75 …ect, n, (MKLTYPE*)m_matT.data(), lda, &sdim, (MKLTYPE*)w.data(), (MKLTYPE*)m_matU.data(), ldvs ); \
|
D | RealSchur_MKL.h | 59 m_matU.resize(n, n); \ 60 lapack_int ldvs = m_matU.outerStride(); \ 64 …tT.data(), lda, &sdim, (MKLTYPE*)wr.data(), (MKLTYPE*)wi.data(), (MKLTYPE*)m_matU.data(), ldvs ); \
|
D | RealSchur.h | 85 m_matU(size, size), in m_matT() 105 m_matU(matrix.rows(),matrix.cols()), 130 return m_matU; in matrixU() 226 MatrixType m_matU; variable 267 m_matU = matrixQ; in computeFromHessenberg() 388 m_matU.applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows() 496 m_matU.block(0, k, size, 3).applyHouseholderOnTheRight(ess, tau, workspace); in performFrancisQRStep() 511 m_matU.block(0, iu-1, size, 2).applyHouseholderOnTheRight(ess, tau, workspace); in performFrancisQRStep()
|