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

  /external/eigen/doc/examples/
class_Block.cpp 8 topLeftCorner(MatrixBase<Derived>& m, int rows, int cols)
15 topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols)
23 cout << topLeftCorner(4*m, 2, 3) << endl; // calls the const version
24 topLeftCorner(m, 2, 3) *= 5; // calls the non-const version
Tutorial_BlockOperations_corner.cpp 15 m.topLeftCorner(1,3) = m.bottomRightCorner(3,1).transpose();
TemplateKeyword_flexible.cpp 19 copyUpperTriangularPart(m2, m1.topLeftCorner(4,4));
  /external/eigen/doc/snippets/
TopicAliasing_block.cpp 6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2);
TopicAliasing_block_correct.cpp 6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2).eval();
MatrixBase_template_int_int_topLeftCorner.cpp 3 cout << "Here is m.topLeftCorner<2,2>():" << endl;
4 cout << m.topLeftCorner<2,2>() << endl;
5 m.topLeftCorner<2,2>().setZero();
MatrixBase_topLeftCorner_int_int.cpp 3 cout << "Here is m.topLeftCorner(2, 2):" << endl;
4 cout << m.topLeftCorner(2, 2) << endl;
5 m.topLeftCorner(2, 2).setZero();
Tutorial_AdvancedInitialization_ThreeWays.cpp 3 mat1.topLeftCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2);
10 mat2.topLeftCorner(size/2, size/2).setZero();
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
qrsolv.h 35 s.topLeftCorner(n,n).template triangularView<StrictlyLower>() = s.topLeftCorner(n,n).transpose();
79 s.topLeftCorner(nsing, nsing).transpose().template triangularView<Upper>().solveInPlace(wa.head(nsing));
covar.h 63 r.topLeftCorner(n,n).template triangularView<StrictlyUpper>() = r.topLeftCorner(n,n).transpose();
lmpar.h 198 qr.matrixQR().topLeftCorner(rank, rank).template triangularView<Upper>().solveInPlace(wa1.head(rank));
220 qr.matrixQR().topLeftCorner(n, n).transpose().template triangularView<Lower>().solveInPlace(wa1);
268 // qr.matrixQR().topLeftCorner(n, n).transpose().template triangularView<Lower>().solveInPlace(wa1);
LevenbergMarquardt.h 536 wa3 = fjac.topLeftCorner(n,n).template triangularView<Upper>() * (permutation.inverse() * wa1);
  /external/eigen/test/
corners.cpp 28 COMPARE_CORNER(topLeftCorner(r,c), block(0,0,r,c));
60 VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template block<r,c>(0,0)));
72 VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template block<r,c>(0,0)));
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 124 inline Block<Derived> topLeftCorner(Index cRows, Index cCols)
129 /** This is the const version of topLeftCorner(Index, Index).*/
130 inline const Block<const Derived> topLeftCorner(Index cRows, Index cCols) const
145 inline Block<Derived, CRows, CCols> topLeftCorner()
150 /** This is the const version of topLeftCorner<int, int>().*/
152 inline const Block<const Derived, CRows, CCols> topLeftCorner() const
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 163 Rt.col(m).head(m).noalias() -= c*Rt.topLeftCorner(m,m)*src_mean;
Transform.h     [all...]
  /external/eigen/Eigen/src/LU/
FullPivLU.h 604 m.topLeftCorner(rank(), rank())
693 .topLeftCorner(smalldim,smalldim)
705 .topLeftCorner(nonzero_pivots, nonzero_pivots)
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR.h 479 .topLeftCorner(nonzero_pivots, nonzero_pivots)
487 .topLeftCorner(nonzero_pivots, nonzero_pivots)
HouseholderQR.h 301 .topLeftCorner(rank, rank)
FullPivHouseholderQR.h 503 .topLeftCorner(dec().rank(), dec().rank())
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 153 H.topLeftCorner(k, k).template triangularView < Eigen::Upper > ().solveInPlace(y);
  /external/eigen/unsupported/test/
NonLinearOptimization.cpp 234 cov = covfac*lm.fjac.topLeftCorner<n,n>();
237 // VERIFY_IS_APPROX( covfac*fjac.topLeftCorner<n,n>() , cov_ref);
625 cov = covfac*lm.fjac.topLeftCorner<n,n>();
628 // VERIFY_IS_APPROX( covfac*fjac.topLeftCorner<n,n>() , cov_ref);
    [all...]

Completed in 392 milliseconds