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

  /external/eigen/Eigen/src/QR/
HouseholderQR_MKL.h 46 template<typename MatrixQR, typename HCoeffs> \
47 struct householder_qr_inplace_blocked<MatrixQR, HCoeffs, EIGTYPE, true> \
49 static void run(MatrixQR& mat, HCoeffs& hCoeffs, \
57 LAPACKE_##MKLPREFIX##geqrf( matrix_order, m, n, (MKLTYPE*)mat.data(), lda, (MKLTYPE*)hCoeffs.data()); \
58 hCoeffs.adjointInPlace(); \
HouseholderQR.h 189 const HCoeffsType& hCoeffs() const { return m_hCoeffs; }
224 template<typename MatrixQR, typename HCoeffs>
225 void householder_qr_inplace_unblocked(MatrixQR& mat, HCoeffs& hCoeffs, typename MatrixQR::Scalar* tempData = 0)
234 eigen_assert(hCoeffs.size() == size);
250 mat.col(k).tail(remainingRows).makeHouseholderInPlace(hCoeffs.coeffRef(k), beta);
255 .applyHouseholderOnTheLeft(mat.col(k).tail(remainingRows-1), hCoeffs.coeffRef(k), tempData+k+1);
260 template<typename MatrixQR, typename HCoeffs,
262 bool InnerStrideIsOne = (MatrixQR::InnerStrideAtCompileTime == 1 && HCoeffs::InnerStrideAtCompileTime == 1)>
266 static void run(MatrixQR& mat, HCoeffs& hCoeffs
    [all...]
FullPivHouseholderQR.h 299 const HCoeffsType& hCoeffs() const { return m_hCoeffs; }
526 dec().hCoeffs().coeff(k), &temp.coeffRef(0));
556 const HCoeffsType& hCoeffs,
559 m_hCoeffs(hCoeffs),
ColPivHouseholderQR.h 303 const HCoeffsType& hCoeffs() const { return m_hCoeffs; }
539 c.applyOnTheLeft(householderSequence(dec().matrixQR(), dec().hCoeffs())
  /external/eigen/Eigen/src/Householder/
BlockHouseholder.h 22 void make_block_householder_triangular_factor(TriangularFactorType& triFactor, const VectorsType& vectors, const CoeffsType& hCoeffs)
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)
52 make_block_householder_triangular_factor(T, vectors, hCoeffs);
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 26 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)
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.coeffRef(i) = h
    [all...]
HessenbergDecomposition.h 270 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)
305 hCoeffs.coeffRef(i) = h;
  /external/eigen/test/
householder.cpp 87 HCoeffsVectorType hc = qr.hCoeffs().conjugate();
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
LevenbergMarquardt.h 467 fjac.diagonal() = qrfac.hCoeffs();

Completed in 299 milliseconds