HomeSort by relevance Sort by last modified time
    Searched defs:factorize (Results 1 - 12 of 12) sorted by null

  /external/eigen/Eigen/src/IterativeLinearSolvers/
BasicPreconditioners.h 65 DiagonalPreconditioner& factorize(const MatType& mat) function in class:Eigen::DiagonalPreconditioner
84 return factorize(mat);
151 LeastSquareDiagonalPreconditioner& factorize(const MatType& mat) function in class:Eigen::LeastSquareDiagonalPreconditioner
185 return factorize(mat);
213 IdentityPreconditioner& factorize(const MatrixType& ) { return *this; } function in class:Eigen::IdentityPreconditioner
IncompleteCholesky.h 75 * You must call compute() or the pair analyzePattern()/factorize() to make it valid.
138 void factorize(const MatrixType& mat);
142 * It is a shortcut for a sequential call to the analyzePattern() and factorize() methods.
144 * \sa analyzePattern(), factorize()
150 factorize(mat);
157 eigen_assert(m_factorizationIsOk && "factorize() should be called first");
196 void IncompleteCholesky<Scalar,_UpLo, OrderingType>::factorize(const _MatrixType& mat) function in class:Eigen::IncompleteCholesky
IncompleteLUT.h 152 void factorize(const MatrixType& amat);
163 factorize(amat);
253 void IncompleteLUT<Scalar,StorageIndex>::factorize(const _MatrixType& amat) function in class:Eigen::IncompleteLUT
IterativeSolverBase.h 209 * Currently, this function mostly calls factorize on the preconditioner.
217 Derived& factorize(const EigenBase<MatrixDerived>& A) function in class:Eigen::IterativeSolverBase
221 m_preconditioner.factorize(matrix());
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 167 * \sa analyzePattern() factorize()
185 * \sa analyzePattern() factorize()
227 void factorize(ColSpMatrix& mat);
300 factorize(mat);
338 void PastixBase<Derived>::factorize(ColSpMatrix& mat) function in class:Eigen::PastixBase
434 * \sa analyzePattern() factorize()
446 * \sa factorize()
461 void factorize(const MatrixType& matrix) function in class:Eigen::PastixLU
465 Base::factorize(temp);
545 * \sa analyzePattern() factorize()
567 void factorize(const MatrixType& matrix) function in class:Eigen::PastixLLT
651 void factorize(const MatrixType& matrix) function in class:Eigen::PastixLDLT
    [all...]
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 235 factorize(matrix);
243 * \sa factorize()
267 void factorize(const MatrixType& matrix) function in class:Eigen::CholmodBase
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 206 void factorize(const MatrixType& a) function in class:Eigen::SimplicialCholeskyBase
374 * \sa factorize()
387 void factorize(const MatrixType& a) function in class:Eigen::SimplicialLLT
389 Base::template factorize<false>(a);
471 * \sa factorize()
484 void factorize(const MatrixType& a) function in class:Eigen::SimplicialLDLT
486 Base::template factorize<true>(a);
566 * \sa factorize()
579 void factorize(const MatrixType& a) function in class:Eigen::SimplicialCholesky
582 Base::template factorize<true>(a)
    [all...]
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 255 * \sa factorize(), compute()
271 * \sa factorize(), compute()
275 eigen_assert(m_numeric && "UmfPackLU: you must first call factorize()");
308 void factorize(const InputMatrixType& matrix) function in class:Eigen::UmfPackLU
  /external/eigen/unsupported/Eigen/src/FFT/
ei_kissfft_impl.h 39 void factorize(int nfft) function in struct:Eigen::internal::kiss_cpx_fft
395 pd.factorize(nfft);
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 52 * solver.factorize(A);
117 void factorize (const MatrixType& matrix);
128 //Factorize
129 factorize(matrix);
496 void SparseLU<MatrixType, OrderingType>::factorize(const MatrixType& matrix) function in class:Eigen::SparseLU
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 112 * \sa analyzePattern(), factorize()
117 factorize(mat);
120 void factorize(const MatrixType& mat);
348 void SparseQR<MatrixType,OrderingType>::factorize(const MatrixType& mat) function in class:Eigen::SparseQR
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 368 derived().factorize(matrix);
375 * \sa factorize()
522 * \sa factorize()
537 void factorize(const MatrixType& matrix);
613 void SuperLU<MatrixType>::factorize(const MatrixType& a) function in class:Eigen::SuperLU
651 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or analyzePattern()/factorize()");
709 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for extracting factors, you must first call either compute() or analyzePattern()/factorize()");
795 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for computing the determinant, you must first call either compute() or analyzePattern()/factorize()");
869 * \sa factorize()
882 void factorize(const MatrixType& matrix)
941 void SuperILU<MatrixType>::factorize(const MatrixType& a) function in class:Eigen::SuperILU
    [all...]

Completed in 1293 milliseconds