MCPcopy Create free account
hub / github.com/TinyMPC/TinyMPC / transpose

Method transpose

include/Eigen/Eigen/src/SparseLU/SparseLU.h:203–209  ·  view source on GitHub ↗

\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

201 * \sa adjoint(), solve()
202 */
203 const SparseLUTransposeView<false,SparseLU<MatrixType_,OrderingType_> > transpose()
204 {
205 SparseLUTransposeView<false, SparseLU<MatrixType_,OrderingType_> > transposeView;
206 transposeView.setSparseLU(this);
207 transposeView.setIsInitialized(this->m_isInitialized);
208 return transposeView;
209 }
210
211
212 /** \returns an expression of the adjoint of the factored matrix

Callers 15

backward_pass_gradFunction · 0.45
update_linear_costFunction · 0.45
compute_residualsFunction · 0.45
Quaternion.hFile · 0.45
umeyamaFunction · 0.45
Hyperplane ThroughFunction · 0.45
Hyperplane.hFile · 0.45
inverseMethod · 0.45
get_symmetrized_graphMethod · 0.45
grabMatrixMethod · 0.45
_solve_implMethod · 0.45

Calls 2

setSparseLUMethod · 0.80
setIsInitializedMethod · 0.80

Tested by

no test coverage detected