OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_Q
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/SparseQR/
SparseQR.h
267
SparseMatrix<Scalar, RowMajor, Index> mQrm(this->
m_Q
);
268
this->
m_Q
= mQrm;
280
QRMatrixType
m_Q
; // The orthogonal reflectors
331
m_Q
.resize(m, diagSize);
335
m_Q
.reserve(2*mat.nonZeros());
363
m_Q
.setZero();
412
m_Q
.startVec(0);
479
tdot =
m_Q
.col(curIdx).dot(tval);
484
// FIXME: tval -= tdot *
m_Q
.col(curIdx) should amount to the same (need to check/add support for efficient "dense ?= sparse")
485
for (typename QRMatrixType::InnerIterator itq(
m_Q
, curIdx); itq; ++itq
[
all
...]
/external/eigen/Eigen/src/Eigenvalues/
RealQZ.h
89
m_Q
(size, size),
107
m_Q
(A.rows(),A.cols()),
122
return
m_Q
;
191
MatrixType m_S, m_T,
m_Q
, m_Z;
226
m_Q
= qrT.householderQ();
228
m_S.applyOnTheLeft(
m_Q
.adjoint());
245
m_Q
.applyOnTheRight(i-1,i,G);
340
m_Q
.applyOnTheRight(i,i+1,G);
375
m_Q
.applyOnTheRight(zz,zz+1,G);
489
m_Q
.template middleCols<3>(k).applyHouseholderOnTheRight(essential2, tau, m_workspace.data())
[
all
...]
Completed in 61 milliseconds