MCPcopy Create free account
hub / github.com/ErrorAtLine0/infinipaint / adjoint

Method adjoint

include/Eigen/src/SparseLU/SparseLU.h:250–255  ·  view source on GitHub ↗

\brief Return a solver for the adjointed matrix. * * \returns an expression of the adjoint of the factored matrix * * A typical usage is to solve for the adjoint problem A' x = b: * \code * solver.compute(A); * x = solver.adjoint().solve(b); * \endcode * * For real scalar types, this function is equivalent to transpose(). * * \sa transpose(), solve() */

Source from the content-addressed store, hash-verified

248 * \sa transpose(), solve()
249 */
250 const SparseLUTransposeView<true, SparseLU<MatrixType_, OrderingType_>> adjoint() {
251 SparseLUTransposeView<true, SparseLU<MatrixType_, OrderingType_>> adjointView;
252 adjointView.setSparseLU(this);
253 adjointView.setIsInitialized(this->m_isInitialized);
254 return adjointView;
255 }
256
257 /** \brief Give the number of rows.
258 */

Callers 12

runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
BDCSVD.hFile · 0.45
compute_impl_lapackeMethod · 0.45
_solve_implMethod · 0.45

Calls 2

setSparseLUMethod · 0.80
setIsInitializedMethod · 0.80

Tested by

no test coverage detected