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

  /external/eigen/doc/snippets/
BiCGSTAB_step_by_step.cpp 11 x = solver.solveWithGuess(b,x);
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 317 inline const SolveWithGuess<Derived, Rhs, Guess>
318 solveWithGuess(const MatrixBase<Rhs>& b, const Guess& x0) const
322 return SolveWithGuess<Derived, Rhs, Guess>(derived(), b.derived(), x0);
  /external/eigen/test/
sparse_solver.h 18 // With a temporary through evaluator<SolveWithGuess>
19 x = solver.derived().solveWithGuess(b,g) + Result::Zero(x.rows(), x.cols());
23 // direct evaluation within x through Assignment<Result,SolveWithGuess>
24 x = solver.derived().solveWithGuess(b.derived(),g);

Completed in 214 milliseconds