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

Method transpose

include/Eigen/src/SparseLU/SparseLU.h:229–234  ·  view source on GitHub ↗

\brief Return a solver for the transposed matrix. * * \returns an expression of the transposed of the factored matrix. * * A typical usage is to solve for the transposed problem A^T x = b: * \code * solver.compute(A); * x = solver.transpose().solve(b); * \endcode * * \sa adjoint(), solve() */

Source from the content-addressed store, hash-verified

227 * \sa adjoint(), solve()
228 */
229 const SparseLUTransposeView<false, SparseLU<MatrixType_, OrderingType_>> transpose() {
230 SparseLUTransposeView<false, SparseLU<MatrixType_, OrderingType_>> transposeView;
231 transposeView.setSparseLU(this);
232 transposeView.setIsInitialized(this->m_isInitialized);
233 return transposeView;
234 }
235
236 /** \brief Return a solver for the adjointed matrix.
237 *

Callers 11

_solve_implMethod · 0.45
JacobiSVD.hFile · 0.45
BDCSVD.hFile · 0.45
divideMethod · 0.45
computeSVDofMMethod · 0.45
computeSingValsMethod · 0.45
deflationMethod · 0.45

Calls 2

setSparseLUMethod · 0.80
setIsInitializedMethod · 0.80

Tested by

no test coverage detected