Searched defs:hCoeffs (Results 1 - 6 of 6) sorted by relevance

/external/eigen/Eigen/src/Householder/
H A DBlockHouseholder.h22 void make_block_householder_triangular_factor(TriangularFactorType& triFactor, const VectorsType& vectors, const CoeffsType& hCoeffs) argument
34 triFactor.col(i).head(i).noalias() = -hCoeffs(i) * vectors.block(i, 0, rs, i).adjoint()
40 triFactor(i,i) = hCoeffs(i);
46 void apply_block_householder_on_the_left(MatrixType& mat, const VectorsType& vectors, const CoeffsType& hCoeffs) argument
52 make_block_householder_triangular_factor(T, vectors, hCoeffs);
/external/eigen/Eigen/src/Eigenvalues/
H A DHessenbergDecomposition.h270 static void _compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp);
283 * \param hCoeffs returned Householder coefficients
292 void HessenbergDecomposition<MatrixType>::_compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp) argument
305 hCoeffs.coeffRef(i) = h;
H A DTridiagonalization.h26 void tridiagonalization_inplace(MatrixType& matA, CoeffVectorType& hCoeffs);
328 * \param[out] hCoeffs returned Householder coefficients (see below)
337 * where \f$ h_i = hCoeffs[i]\f$ is the \f$ i \f$th Householder coefficient and
346 void tridiagonalization_inplace(MatrixType& matA, CoeffVectorType& hCoeffs) argument
354 eigen_assert(n==hCoeffs.size()+1 || n==1);
367 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>()
370 hCoeffs.tail(n-i-1) += (conj(h)*Scalar(-0.5)*(hCoeffs.tail(remainingSize).dot(matA.col(i).tail(remainingSize)))) * matA.col(i).tail(n-i-1);
373 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), -1);
376 hCoeffs
[all...]
/external/eigen/Eigen/src/QR/
H A DHouseholderQR.h189 const HCoeffsType& hCoeffs() const { return m_hCoeffs; } function in class:Eigen::HouseholderQR
219 void householder_qr_inplace_unblocked(MatrixQR& mat, HCoeffs& hCoeffs, typename MatrixQR::Scalar* tempData = 0) argument
228 eigen_assert(hCoeffs.size() == size);
244 mat.col(k).tail(remainingRows).makeHouseholderInPlace(hCoeffs.coeffRef(k), beta);
249 .applyHouseholderOnTheLeft(mat.col(k).tail(remainingRows-1), hCoeffs.coeffRef(k), tempData+k+1);
255 void householder_qr_inplace_blocked(MatrixQR& mat, HCoeffs& hCoeffs, argument
293 Block<HCoeffs,Dynamic,1> hCoeffsSegment = hCoeffs.segment(k,bs);
322 dec().hCoeffs().head(rank)).transpose()
H A DColPivHouseholderQR.h303 const HCoeffsType& hCoeffs() const { return m_hCoeffs; } function in class:Eigen::ColPivHouseholderQR
541 c.applyOnTheLeft(householderSequence(dec().matrixQR(), dec().hCoeffs())
H A DFullPivHouseholderQR.h299 const HCoeffsType& hCoeffs() const { return m_hCoeffs; } function in class:Eigen::FullPivHouseholderQR
518 dec().hCoeffs().coeff(k), &temp.coeffRef(0));
548 const HCoeffsType& hCoeffs,
551 m_hCoeffs(hCoeffs),
547 FullPivHouseholderQRMatrixQReturnType(const MatrixType& qr, const HCoeffsType& hCoeffs, const IntDiagSizeVectorType& rowsTranspositions) argument

Completed in 100 milliseconds