OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:topRows
(Results
1 - 15
of
15
) sorted by null
/external/eigen/doc/snippets/
MatrixBase_template_int_topRows.cpp
3
cout << "Here is a.
topRows
<2>():" << endl;
4
cout << a.
topRows
<2>() << endl;
5
a.
topRows
<2>().setZero();
MatrixBase_topRows_int.cpp
3
cout << "Here is a.
topRows
(2):" << endl;
4
cout << a.
topRows
(2) << endl;
5
a.
topRows
(2).setZero();
/external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h
154
y.
topRows
(rk) = this->matrixR().topLeftCorner(rk, rk).template triangularView<Upper>().solve(y.
topRows
(rk));
157
dest.
topRows
(cols()) = colsPermutation() * y.
topRows
(cols());
/external/eigen/Eigen/src/QR/
HouseholderQR.h
328
.solveInPlace(c.
topRows
(rank));
330
dst.
topRows
(rank) = c.
topRows
(rank);
ColPivHouseholderQR.h
549
.solveInPlace(c.
topRows
(nonzero_pivots));
FullPivHouseholderQR.h
524
.solveInPlace(c.
topRows
(dec().rank()));
/external/eigen/test/
corners.cpp
38
COMPARE_CORNER(
topRows
(r), block(0,0,r,cols));
75
VERIFY_IS_EQUAL((matrix.template
topRows
<r>()), (matrix.template block<r,cols>(0,0)));
97
VERIFY_IS_EQUAL((const_matrix.template
topRows
<r>()), (const_matrix.template block<r,cols>(0,0)));
/external/eigen/Eigen/src/Eigenvalues/
RealQZ.h
253
m_T.
topRows
(i).applyOnTheRight(i,i-1,G);
343
m_S.
topRows
(i+2).applyOnTheRight(i+1,i,G);
344
m_T.
topRows
(i+2).applyOnTheRight(i+1,i,G);
380
m_S.
topRows
(zz+2).applyOnTheRight(zz, zz-1,G);
381
m_T.
topRows
(zz+1).applyOnTheRight(zz, zz-1,G);
501
tmp = m_S.template middleCols<2>(k).
topRows
(lr) * essential2;
504
m_S.template middleCols<2>(k).
topRows
(lr) -= (tau*tmp) * essential2.adjoint();
506
tmp = m_T.template middleCols<2>(k).
topRows
(lr) * essential2;
509
m_T.template middleCols<2>(k).
topRows
(lr) -= (tau*tmp) * essential2.adjoint();
ComplexSchur.h
432
m_matT.
topRows
((std::min)(il+2,iu)+1).applyOnTheRight(il, il+1, rot);
440
m_matT.
topRows
((std::min)(i+2,iu)+1).applyOnTheRight(i, i+1, rot);
RealSchur.h
387
m_matT.
topRows
(iu+1).applyOnTheRight(iu-1, iu, rot);
/external/eigen/Eigen/src/LU/
FullPivLU.h
527
* m_lu.
topRows
(smalldim)
702
.solveInPlace(c.
topRows
(smalldim));
707
* c.
topRows
(cols);
714
.solveInPlace(c.
topRows
(nonzero_pivots));
/external/eigen/Eigen/src/SparseQR/
SparseQR.h
179
y.
topRows
(rank) = this->matrixR().topLeftCorner(rank, rank).template triangularView<Upper>().solve(b.
topRows
(rank));
183
if (m_perm_c.size()) dest = colsPermutation() * y.
topRows
(cols());
184
else dest = y.
topRows
(cols());
/external/eigen/Eigen/src/plugins/
BlockMethods.h
380
inline RowsBlockXpr
topRows
(Index n)
385
/** This is the const version of
topRows
(Index).*/
386
inline ConstRowsBlockXpr
topRows
(Index n) const
405
inline typename NRowsBlockXpr<N>::Type
topRows
(Index n = N)
410
/** This is the const version of
topRows
<int>().*/
412
inline typename ConstNRowsBlockXpr<N>::Type
topRows
(Index n = N) const
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
RevisionHistoryView.js
252
var
topRows
= [];
/external/eigen/Eigen/src/Geometry/
Transform.h
[
all
...]
Completed in 3436 milliseconds