Searched defs:computeU (Results 1 - 5 of 5) sorted by relevance

/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h106 * \param[in] computeU If true, both T and U are computed; if false, only T is computed.
112 ComplexSchur(const MatrixType& matrix, bool computeU = true)
120 compute(matrix, computeU);
128 * ComplexSchur(const MatrixType& matrix, bool computeU) or the
129 * member function compute(const MatrixType& matrix, bool computeU)
131 * matrix, and that \p computeU was set to true (the default
149 * ComplexSchur(const MatrixType& matrix, bool computeU) or the
150 * member function compute(const MatrixType& matrix, bool computeU)
170 * \param[in] computeU If true, both T and U are computed; if false, only T is computed.
182 * if \a computeU i
316 compute(const MatrixType& matrix, bool computeU) argument
338 computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU) argument
353 run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU) argument
364 run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU) argument
384 reduceToTriangularForm(bool computeU) argument
[all...]
H A DRealSchur.h96 * \param[in] computeU If true, both T and U are computed; if false, only T is computed.
103 RealSchur(const MatrixType& matrix, bool computeU = true)
112 compute(matrix, computeU);
121 * to compute the Schur decomposition of a matrix, and \p computeU was set
152 * \param[in] computeU If true, both T and U are computed; if false, only T is computed.
160 * may be taken to be \f$25n^3\f$ flops if \a computeU is true and
161 * \f$10n^3\f$ flops if \a computeU is false.
168 RealSchur& compute(const MatrixType& matrix, bool computeU = true);
173 * \param computeU Computes the matriX U of the Schur vectors
179 * When computeU i
246 compute(const MatrixType& matrix, bool computeU) argument
263 computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU) argument
364 splitOffTwoRows(Index iu, bool computeU, const Scalar& exshift) argument
468 performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace) argument
[all...]
/external/eigen/unsupported/Eigen/src/SVD/
H A DSVDBase.h113 eigen_assert(computeU() && "This SVD decomposition didn't compute U. Did you ask for it?");
155 inline bool computeU() const { return m_computeFullU || m_computeThinU; } function in class:Eigen::SVDBase
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DDGMRES.h438 bool computeU = true; local
441 schurofH.computeFromHessenberg(m_Hes.topLeftCorner(it,it), matrixQ, computeU);
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h141 if(svd.computeU()) svd.m_matrixU = m_qr.colsPermutation();
240 if(svd.computeU()) svd.m_matrixU = m_qr.colsPermutation();
339 if(svd.computeU()) svd.m_matrixU.setIdentity(matrix.rows(), matrix.rows());
383 if(svd.computeU()) svd.m_matrixU.col(p) *= conj(z);
388 if(svd.computeU()) svd.m_matrixU.col(q) *= conj(z);
397 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
408 if(svd.computeU()) svd.m_matrixU.col(q) *= conj(z);
616 eigen_assert(computeU() && "This JacobiSVD decomposition didn't compute U. Did you ask for it?");
648 inline bool computeU() const { return m_computeFullU || m_computeThinU; } function in class:Eigen::JacobiSVD
666 eigen_assert(computeU()
[all...]

Completed in 201 milliseconds