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
353 eigen_assert(n==hCoeffs.size()+1 || n==1);
366 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>()
369 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);
372 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), -1);
375 hCoeffs
[all...]
/external/eigen/Eigen/src/QR/
H A DHouseholderQR.h164 const HCoeffsType& hCoeffs() const { return m_hCoeffs; } function in class:Eigen::HouseholderQR
193 void householder_qr_inplace_unblocked(MatrixQR& mat, HCoeffs& hCoeffs, typename MatrixQR::Scalar* tempData = 0) argument
202 eigen_assert(hCoeffs.size() == size);
218 mat.col(k).tail(remainingRows).makeHouseholderInPlace(hCoeffs.coeffRef(k), beta);
223 .applyHouseholderOnTheLeft(mat.col(k).tail(remainingRows-1), hCoeffs.coeffRef(k), tempData+k+1);
229 void householder_qr_inplace_blocked(MatrixQR& mat, HCoeffs& hCoeffs, argument
268 Block<HCoeffs,Dynamic,1> hCoeffsSegment = hCoeffs.segment(k,bs);
297 dec().hCoeffs().head(rank)).transpose()
H A DColPivHouseholderQR.h258 const HCoeffsType& hCoeffs() const { return m_hCoeffs; } function in class:Eigen::ColPivHouseholderQR
473 c.applyOnTheLeft(householderSequence(dec().matrixQR(), dec().hCoeffs())
H A DFullPivHouseholderQR.h277 const HCoeffsType& hCoeffs() const { return m_hCoeffs; } function in class:Eigen::FullPivHouseholderQR
488 dec().hCoeffs().coeff(k), &temp.coeffRef(0));
529 const HCoeffsType& hCoeffs,
532 m_hCoeffs(hCoeffs),
528 FullPivHouseholderQRMatrixQReturnType(const MatrixType& qr, const HCoeffsType& hCoeffs, const IntColVectorType& rowsTranspositions) argument

Completed in 2383 milliseconds