OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bottomLeftCorner
(Results
1 - 9
of
9
) sorted by null
/external/eigen/doc/snippets/
MatrixBase_bottomLeftCorner_int_int.cpp
3
cout << "Here is m.
bottomLeftCorner
(2, 2):" << endl;
4
cout << m.
bottomLeftCorner
(2, 2) << endl;
5
m.
bottomLeftCorner
(2, 2).setZero();
MatrixBase_template_int_int_bottomLeftCorner.cpp
3
cout << "Here is m.
bottomLeftCorner
<2,2>():" << endl;
4
cout << m.
bottomLeftCorner
<2,2>() << endl;
5
m.
bottomLeftCorner
<2,2>().setZero();
MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp
3
cout << "Here is m.
bottomLeftCorner
<2,Dynamic>(2,2):" << endl;
4
cout << m.
bottomLeftCorner
<2,Dynamic>(2,2) << endl;
5
m.
bottomLeftCorner
<2,Dynamic>(2,2).setZero();
Tutorial_AdvancedInitialization_ThreeWays.cpp
5
mat1.
bottomLeftCorner
(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
12
mat2.
bottomLeftCorner
(size/2, size/2).setIdentity();
/external/eigen/test/
corners.cpp
30
COMPARE_CORNER(
bottomLeftCorner
(r,c), block(rows-r,0,r,c));
62
VERIFY_IS_EQUAL((matrix.template
bottomLeftCorner
<r,c>()), (matrix.template block<r,c>(rows-r,0)));
67
VERIFY_IS_EQUAL((matrix.template
bottomLeftCorner
<r,c>()), (matrix.template
bottomLeftCorner
<r,Dynamic>(r,c)));
72
VERIFY_IS_EQUAL((matrix.template
bottomLeftCorner
<r,c>()), (matrix.template
bottomLeftCorner
<Dynamic,c>(r,c)));
84
VERIFY_IS_EQUAL((const_matrix.template
bottomLeftCorner
<r,c>()), (const_matrix.template block<r,c>(rows-r,0)));
89
VERIFY_IS_EQUAL((const_matrix.template
bottomLeftCorner
<r,c>()), (const_matrix.template
bottomLeftCorner
<r,Dynamic>(r,c)));
94
VERIFY_IS_EQUAL((const_matrix.template
bottomLeftCorner
<r,c>()), (const_matrix.template bottomLeftCorner<Dynamic,c>(r,c)))
[
all
...]
/external/eigen/Eigen/src/plugins/
BlockMethods.h
306
inline Block<Derived>
bottomLeftCorner
(Index cRows, Index cCols)
311
/** This is the const version of
bottomLeftCorner
(Index, Index).*/
312
inline const Block<const Derived>
bottomLeftCorner
(Index cRows, Index cCols) const
327
inline Block<Derived, CRows, CCols>
bottomLeftCorner
()
332
/** This is the const version of
bottomLeftCorner
<int, int>().*/
334
inline const Block<const Derived, CRows, CCols>
bottomLeftCorner
() const
357
inline Block<Derived, CRows, CCols>
bottomLeftCorner
(Index cRows, Index cCols)
362
/** This is the const version of
bottomLeftCorner
<int, int>(Index, Index).*/
364
inline const Block<const Derived, CRows, CCols>
bottomLeftCorner
(Index cRows, Index cCols) const
[
all
...]
/external/ceres-solver/internal/ceres/
dense_sparse_matrix.cc
118
m_.
bottomLeftCorner
(m_.cols(), m_.cols()) =
/external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h
359
result.
bottomLeftCorner
(n-2, n-2).template triangularView<Lower>().setZero();
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h
92
H.
bottomLeftCorner
(m - 1, 1) = e;
190
H.
bottomLeftCorner
(m - 1, 1) = e;
Completed in 801 milliseconds