HomeSort by relevance Sort by last modified time
    Searched refs:matrixQR (Results 1 - 12 of 12) sorted by null

  /external/eigen/Eigen/src/Eigen2Support/
QR.h 50 return MatrixRBlockType(this->matrixQR(), 0, 0, cols, cols).template triangularView<UpperTriangular>();
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
lmpar.h 185 const Index n = qr.matrixQR().cols();
198 qr.matrixQR().topLeftCorner(rank, rank).template triangularView<Upper>().solveInPlace(wa1.head(rank));
220 qr.matrixQR().topLeftCorner(n, n).transpose().template triangularView<Lower>().solveInPlace(wa1);
227 wa1[j] = qr.matrixQR().col(j).head(j+1).dot(qtb.head(j+1)) / diag[qr.colsPermutation().indices()(j)];
242 Matrix< Scalar, Dynamic, Dynamic > s = qr.matrixQR();
268 // qr.matrixQR().topLeftCorner(n, n).transpose().template triangularView<Lower>().solveInPlace(wa1);
HybridNonLinearSolver.h 221 R = qrfac.matrixQR();
461 R = qrfac.matrixQR();
LevenbergMarquardt.h 223 fjac = qrfac.matrixQR();
459 fjac = qrfac.matrixQR();
  /external/eigen/test/
qr.cpp 30 MatrixType r = qrOfA.matrixQR().template triangularView<Upper>();
41 Matrix<Scalar,Rows,Cols> r = qr.matrixQR();
92 VERIFY_RAISES_ASSERT(qr.matrixQR())
qr_colpivoting.cpp 37 MatrixType r = qr.matrixQR().template triangularView<Upper>();
62 Matrix<Scalar,Rows,Cols> r = qr.matrixQR().template triangularView<Upper>();
111 VERIFY_RAISES_ASSERT(qr.matrixQR())
qr_fullpivoting.cpp 33 MatrixType r = qr.matrixQR();
94 VERIFY_RAISES_ASSERT(qr.matrixQR())
householder.cpp 88 m2.block(shift,0,brows,cols) = qr.matrixQR();
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 125 const MatrixType& matrixQR() const
192 template<typename MatrixQR, typename HCoeffs>
193 void householder_qr_inplace_unblocked(MatrixQR& mat, HCoeffs& hCoeffs, typename MatrixQR::Scalar* tempData = 0)
195 typedef typename MatrixQR::Index Index;
196 typedef typename MatrixQR::Scalar Scalar;
197 typedef typename MatrixQR::RealScalar RealScalar;
204 typedef Matrix<Scalar,MatrixQR::ColsAtCompileTime,1> TempType;
228 template<typename MatrixQR, typename HCoeffs>
229 void householder_qr_inplace_blocked(MatrixQR& mat, HCoeffs& hCoeffs
    [all...]
ColPivHouseholderQR.h 133 const MatrixType& matrixQR() const
473 c.applyOnTheLeft(householderSequence(dec().matrixQR(), dec().hCoeffs())
478 dec().matrixQR()
486 = dec().matrixQR()
FullPivHouseholderQR.h 147 const MatrixType& matrixQR() const
487 .applyHouseholderOnTheLeft(dec().matrixQR().col(k).tail(remainingSize-1),
502 dec().matrixQR()
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 91 svd.m_workMatrix = m_qr.matrixQR().block(0,0,matrix.cols(),matrix.cols()).template triangularView<Upper>();
136 svd.m_workMatrix = m_qr.matrixQR().block(0,0,matrix.rows(),matrix.rows()).template triangularView<Upper>().adjoint();
172 svd.m_workMatrix = m_qr.matrixQR().block(0,0,matrix.cols(),matrix.cols()).template triangularView<Upper>();
226 svd.m_workMatrix = m_qr.matrixQR().block(0,0,matrix.rows(),matrix.rows()).template triangularView<Upper>().adjoint();
268 svd.m_workMatrix = m_qr.matrixQR().block(0,0,matrix.cols(),matrix.cols()).template triangularView<Upper>();
321 svd.m_workMatrix = m_qr.matrixQR().block(0,0,matrix.rows(),matrix.rows()).template triangularView<Upper>().adjoint();
    [all...]

Completed in 106 milliseconds