mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-30 17:40:05 +08:00
Implement mixed static/dynamic-size .block() (bug #579)
This commit is contained in:
parent
05da15bf40
commit
e37ff98bbb
@ -90,12 +90,13 @@ inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const
|
|||||||
|
|
||||||
/** \returns an expression of a fixed-size top-right corner of *this.
|
/** \returns an expression of a fixed-size top-right corner of *this.
|
||||||
*
|
*
|
||||||
* The template parameters CRows and CCols are the number of rows and columns in the corner.
|
* \tparam CRows the number of rows in the corner
|
||||||
|
* \tparam CCols the number of columns in the corner
|
||||||
*
|
*
|
||||||
* Example: \include MatrixBase_template_int_int_topRightCorner.cpp
|
* Example: \include MatrixBase_template_int_int_topRightCorner.cpp
|
||||||
* Output: \verbinclude MatrixBase_template_int_int_topRightCorner.out
|
* Output: \verbinclude MatrixBase_template_int_int_topRightCorner.out
|
||||||
*
|
*
|
||||||
* \sa class Block, block(Index,Index,Index,Index)
|
* \sa class Block, block<int,int>(Index,Index)
|
||||||
*/
|
*/
|
||||||
template<int CRows, int CCols>
|
template<int CRows, int CCols>
|
||||||
inline Block<Derived, CRows, CCols> topRightCorner()
|
inline Block<Derived, CRows, CCols> topRightCorner()
|
||||||
@ -110,6 +111,35 @@ inline const Block<const Derived, CRows, CCols> topRightCorner() const
|
|||||||
return Block<const Derived, CRows, CCols>(derived(), 0, cols() - CCols);
|
return Block<const Derived, CRows, CCols>(derived(), 0, cols() - CCols);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** \returns an expression of a top-right corner of *this.
|
||||||
|
*
|
||||||
|
* \tparam CRows number of rows in corner as specified at compile time
|
||||||
|
* \tparam CCols number of columns in corner as specified at compile time
|
||||||
|
* \param cRows number of rows in corner as specified at run time
|
||||||
|
* \param cCols number of columns in corner as specified at run time
|
||||||
|
*
|
||||||
|
* This function is mainly useful for corners where the number of rows is specified at compile time
|
||||||
|
* and the number of columns is specified at run time, or vice versa. The compile-time and run-time
|
||||||
|
* information should not contradict. In other words, \a cRows should equal \a CRows unless
|
||||||
|
* \a CRows is \a Dynamic, and the same for the number of columns.
|
||||||
|
*
|
||||||
|
* Example: \include MatrixBase_template_int_int_topRightCorner_int_int.cpp
|
||||||
|
* Output: \verbinclude MatrixBase_template_int_int_topRightCorner_int_int.out
|
||||||
|
*
|
||||||
|
* \sa class Block
|
||||||
|
*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline Block<Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols)
|
||||||
|
{
|
||||||
|
return Block<Derived, CRows, CCols>(derived(), 0, cols() - cCols, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** This is the const version of topRightCorner<int, int>(Index, Index).*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline const Block<const Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) const
|
||||||
|
{
|
||||||
|
return Block<const Derived, CRows, CCols>(derived(), 0, cols() - cCols, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -156,6 +186,36 @@ inline const Block<const Derived, CRows, CCols> topLeftCorner() const
|
|||||||
return Block<const Derived, CRows, CCols>(derived(), 0, 0);
|
return Block<const Derived, CRows, CCols>(derived(), 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** \returns an expression of a top-left corner of *this.
|
||||||
|
*
|
||||||
|
* \tparam CRows number of rows in corner as specified at compile time
|
||||||
|
* \tparam CCols number of columns in corner as specified at compile time
|
||||||
|
* \param cRows number of rows in corner as specified at run time
|
||||||
|
* \param cCols number of columns in corner as specified at run time
|
||||||
|
*
|
||||||
|
* This function is mainly useful for corners where the number of rows is specified at compile time
|
||||||
|
* and the number of columns is specified at run time, or vice versa. The compile-time and run-time
|
||||||
|
* information should not contradict. In other words, \a cRows should equal \a CRows unless
|
||||||
|
* \a CRows is \a Dynamic, and the same for the number of columns.
|
||||||
|
*
|
||||||
|
* Example: \include MatrixBase_template_int_int_topLeftCorner_int_int.cpp
|
||||||
|
* Output: \verbinclude MatrixBase_template_int_int_topLeftCorner_int_int.out
|
||||||
|
*
|
||||||
|
* \sa class Block
|
||||||
|
*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline Block<Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols)
|
||||||
|
{
|
||||||
|
return Block<Derived, CRows, CCols>(derived(), 0, 0, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** This is the const version of topLeftCorner<int, int>(Index, Index).*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline const Block<const Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols) const
|
||||||
|
{
|
||||||
|
return Block<const Derived, CRows, CCols>(derived(), 0, 0, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** \returns a dynamic-size expression of a bottom-right corner of *this.
|
/** \returns a dynamic-size expression of a bottom-right corner of *this.
|
||||||
@ -201,6 +261,36 @@ inline const Block<const Derived, CRows, CCols> bottomRightCorner() const
|
|||||||
return Block<const Derived, CRows, CCols>(derived(), rows() - CRows, cols() - CCols);
|
return Block<const Derived, CRows, CCols>(derived(), rows() - CRows, cols() - CCols);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** \returns an expression of a bottom-right corner of *this.
|
||||||
|
*
|
||||||
|
* \tparam CRows number of rows in corner as specified at compile time
|
||||||
|
* \tparam CCols number of columns in corner as specified at compile time
|
||||||
|
* \param cRows number of rows in corner as specified at run time
|
||||||
|
* \param cCols number of columns in corner as specified at run time
|
||||||
|
*
|
||||||
|
* This function is mainly useful for corners where the number of rows is specified at compile time
|
||||||
|
* and the number of columns is specified at run time, or vice versa. The compile-time and run-time
|
||||||
|
* information should not contradict. In other words, \a cRows should equal \a CRows unless
|
||||||
|
* \a CRows is \a Dynamic, and the same for the number of columns.
|
||||||
|
*
|
||||||
|
* Example: \include MatrixBase_template_int_int_bottomRightCorner_int_int.cpp
|
||||||
|
* Output: \verbinclude MatrixBase_template_int_int_bottomRightCorner_int_int.out
|
||||||
|
*
|
||||||
|
* \sa class Block
|
||||||
|
*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline Block<Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols)
|
||||||
|
{
|
||||||
|
return Block<Derived, CRows, CCols>(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** This is the const version of bottomRightCorner<int, int>(Index, Index).*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline const Block<const Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols) const
|
||||||
|
{
|
||||||
|
return Block<const Derived, CRows, CCols>(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** \returns a dynamic-size expression of a bottom-left corner of *this.
|
/** \returns a dynamic-size expression of a bottom-left corner of *this.
|
||||||
@ -246,6 +336,36 @@ inline const Block<const Derived, CRows, CCols> bottomLeftCorner() const
|
|||||||
return Block<const Derived, CRows, CCols>(derived(), rows() - CRows, 0);
|
return Block<const Derived, CRows, CCols>(derived(), rows() - CRows, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** \returns an expression of a bottom-left corner of *this.
|
||||||
|
*
|
||||||
|
* \tparam CRows number of rows in corner as specified at compile time
|
||||||
|
* \tparam CCols number of columns in corner as specified at compile time
|
||||||
|
* \param cRows number of rows in corner as specified at run time
|
||||||
|
* \param cCols number of columns in corner as specified at run time
|
||||||
|
*
|
||||||
|
* This function is mainly useful for corners where the number of rows is specified at compile time
|
||||||
|
* and the number of columns is specified at run time, or vice versa. The compile-time and run-time
|
||||||
|
* information should not contradict. In other words, \a cRows should equal \a CRows unless
|
||||||
|
* \a CRows is \a Dynamic, and the same for the number of columns.
|
||||||
|
*
|
||||||
|
* Example: \include MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp
|
||||||
|
* Output: \verbinclude MatrixBase_template_int_int_bottomLeftCorner_int_int.out
|
||||||
|
*
|
||||||
|
* \sa class Block
|
||||||
|
*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline Block<Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols)
|
||||||
|
{
|
||||||
|
return Block<Derived, CRows, CCols>(derived(), rows() - cRows, 0, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** This is the const version of bottomLeftCorner<int, int>(Index, Index).*/
|
||||||
|
template<int CRows, int CCols>
|
||||||
|
inline const Block<const Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols) const
|
||||||
|
{
|
||||||
|
return Block<const Derived, CRows, CCols>(derived(), rows() - cRows, 0, cRows, cCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** \returns a block consisting of the top rows of *this.
|
/** \returns a block consisting of the top rows of *this.
|
||||||
@ -545,6 +665,40 @@ inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, In
|
|||||||
return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol);
|
return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** \returns an expression of a block in *this.
|
||||||
|
*
|
||||||
|
* \tparam BlockRows number of rows in block as specified at compile time
|
||||||
|
* \tparam BlockCols number of columns in block as specified at compile time
|
||||||
|
* \param startRow the first row in the block
|
||||||
|
* \param startCol the first column in the block
|
||||||
|
* \param blockRows number of rows in block as specified at run time
|
||||||
|
* \param blockCols number of columns in block as specified at run time
|
||||||
|
*
|
||||||
|
* This function is mainly useful for blocks where the number of rows is specified at compile time
|
||||||
|
* and the number of columns is specified at run time, or vice versa. The compile-time and run-time
|
||||||
|
* information should not contradict. In other words, \a blockRows should equal \a BlockRows unless
|
||||||
|
* \a BlockRows is \a Dynamic, and the same for the number of columns.
|
||||||
|
*
|
||||||
|
* Example: \include MatrixBase_template_int_int_block_int_int_int_int.cpp
|
||||||
|
* Output: \verbinclude MatrixBase_template_int_int_block_int_int_int_int.cpp
|
||||||
|
*
|
||||||
|
* \sa class Block, block(Index,Index,Index,Index)
|
||||||
|
*/
|
||||||
|
template<int BlockRows, int BlockCols>
|
||||||
|
inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol,
|
||||||
|
Index blockRows, Index blockCols)
|
||||||
|
{
|
||||||
|
return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** This is the const version of block<>(Index, Index, Index, Index). */
|
||||||
|
template<int BlockRows, int BlockCols>
|
||||||
|
inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol,
|
||||||
|
Index blockRows, Index blockCols) const
|
||||||
|
{
|
||||||
|
return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols);
|
||||||
|
}
|
||||||
|
|
||||||
/** \returns an expression of the \a i-th column of *this. Note that the numbering starts at 0.
|
/** \returns an expression of the \a i-th column of *this. Note that the numbering starts at 0.
|
||||||
*
|
*
|
||||||
* Example: \include MatrixBase_col.cpp
|
* Example: \include MatrixBase_col.cpp
|
||||||
|
27
doc/LinearLeastSquares.dox
Normal file
27
doc/LinearLeastSquares.dox
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
namespace Eigen {
|
||||||
|
|
||||||
|
/** \eigenManualPage LinearLeastSquares Solving linear least squares problems
|
||||||
|
|
||||||
|
lede
|
||||||
|
|
||||||
|
\eigenAutoToc
|
||||||
|
|
||||||
|
\section LinearLeastSquaresCopied Copied
|
||||||
|
|
||||||
|
The best way to do least squares solving is with a SVD decomposition. Eigen provides one as the JacobiSVD class, and its solve()
|
||||||
|
is doing least-squares solving.
|
||||||
|
|
||||||
|
Here is an example:
|
||||||
|
<table class="example">
|
||||||
|
<tr><th>Example:</th><th>Output:</th></tr>
|
||||||
|
<tr>
|
||||||
|
<td>\include TutorialLinAlgSVDSolve.cpp </td>
|
||||||
|
<td>\verbinclude TutorialLinAlgSVDSolve.out </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
For more information, including faster but less reliable methods, read our page concentrating on \ref LinearLeastSquares "linear least squares problems".
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
Matrix4i m = Matrix4i::Random();
|
||||||
|
cout << "Here is the matrix m:" << endl << m << endl;
|
||||||
|
cout << "Here is the block:" << endl << m.block<2, Dynamic>(1, 1, 2, 3) << endl;
|
||||||
|
m.block<2, Dynamic>(1, 1, 2, 3).setZero();
|
||||||
|
cout << "Now the matrix m is:" << endl << m << endl;
|
@ -0,0 +1,6 @@
|
|||||||
|
Matrix4i m = Matrix4i::Random();
|
||||||
|
cout << "Here is the matrix m:" << endl << m << endl;
|
||||||
|
cout << "Here is m.bottomLeftCorner<2,Dynamic>(2,2):" << endl;
|
||||||
|
cout << m.bottomLeftCorner<2,Dynamic>(2,2) << endl;
|
||||||
|
m.bottomLeftCorner<2,Dynamic>(2,2).setZero();
|
||||||
|
cout << "Now the matrix m is:" << endl << m << endl;
|
@ -0,0 +1,6 @@
|
|||||||
|
Matrix4i m = Matrix4i::Random();
|
||||||
|
cout << "Here is the matrix m:" << endl << m << endl;
|
||||||
|
cout << "Here is m.bottomRightCorner<2,Dynamic>(2,2):" << endl;
|
||||||
|
cout << m.bottomRightCorner<2,Dynamic>(2,2) << endl;
|
||||||
|
m.bottomRightCorner<2,Dynamic>(2,2).setZero();
|
||||||
|
cout << "Now the matrix m is:" << endl << m << endl;
|
@ -0,0 +1,6 @@
|
|||||||
|
Matrix4i m = Matrix4i::Random();
|
||||||
|
cout << "Here is the matrix m:" << endl << m << endl;
|
||||||
|
cout << "Here is m.topLeftCorner<2,Dynamic>(2,2):" << endl;
|
||||||
|
cout << m.topLeftCorner<2,Dynamic>(2,2) << endl;
|
||||||
|
m.topLeftCorner<2,Dynamic>(2,2).setZero();
|
||||||
|
cout << "Now the matrix m is:" << endl << m << endl;
|
@ -0,0 +1,6 @@
|
|||||||
|
Matrix4i m = Matrix4i::Random();
|
||||||
|
cout << "Here is the matrix m:" << endl << m << endl;
|
||||||
|
cout << "Here is m.topRightCorner<2,Dynamic>(2,2):" << endl;
|
||||||
|
cout << m.topRightCorner<2,Dynamic>(2,2) << endl;
|
||||||
|
m.topRightCorner<2,Dynamic>(2,2).setZero();
|
||||||
|
cout << "Now the matrix m is:" << endl << m << endl;
|
@ -77,6 +77,12 @@ template<typename MatrixType> void block(const MatrixType& m)
|
|||||||
// check that fixed block() and block() agree
|
// check that fixed block() and block() agree
|
||||||
Matrix<Scalar,Dynamic,Dynamic> b = m1.template block<BlockRows,BlockCols>(3,3);
|
Matrix<Scalar,Dynamic,Dynamic> b = m1.template block<BlockRows,BlockCols>(3,3);
|
||||||
VERIFY_IS_EQUAL(b, m1.block(3,3,BlockRows,BlockCols));
|
VERIFY_IS_EQUAL(b, m1.block(3,3,BlockRows,BlockCols));
|
||||||
|
|
||||||
|
// same tests with mixed fixed/dynamic size
|
||||||
|
m1.template block<BlockRows,Dynamic>(1,1,BlockRows,BlockCols) *= s1;
|
||||||
|
m1.template block<BlockRows,Dynamic>(1,1,BlockRows,BlockCols)(0,3) = m1.template block<2,5>(1,1)(1,2);
|
||||||
|
Matrix<Scalar,Dynamic,Dynamic> b2 = m1.template block<Dynamic,BlockCols>(3,3,2,5);
|
||||||
|
VERIFY_IS_EQUAL(b2, m1.block(3,3,BlockRows,BlockCols));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rows>2)
|
if (rows>2)
|
||||||
|
@ -62,6 +62,16 @@ template<typename MatrixType, int CRows, int CCols, int SRows, int SCols> void c
|
|||||||
VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template block<r,c>(rows-r,0)));
|
VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template block<r,c>(rows-r,0)));
|
||||||
VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template block<r,c>(rows-r,cols-c)));
|
VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template block<r,c>(rows-r,cols-c)));
|
||||||
|
|
||||||
|
VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template topLeftCorner<r,Dynamic>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<r,Dynamic>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<r,Dynamic>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<r,Dynamic>(r,c)));
|
||||||
|
|
||||||
|
VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template topLeftCorner<Dynamic,c>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<Dynamic,c>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<Dynamic,c>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((matrix.template bottomRightCorner<r,c>()), (matrix.template bottomRightCorner<Dynamic,c>(r,c)));
|
||||||
|
|
||||||
VERIFY_IS_EQUAL((matrix.template topRows<r>()), (matrix.template block<r,cols>(0,0)));
|
VERIFY_IS_EQUAL((matrix.template topRows<r>()), (matrix.template block<r,cols>(0,0)));
|
||||||
VERIFY_IS_EQUAL((matrix.template middleRows<r>(sr)), (matrix.template block<r,cols>(sr,0)));
|
VERIFY_IS_EQUAL((matrix.template middleRows<r>(sr)), (matrix.template block<r,cols>(sr,0)));
|
||||||
VERIFY_IS_EQUAL((matrix.template bottomRows<r>()), (matrix.template block<r,cols>(rows-r,0)));
|
VERIFY_IS_EQUAL((matrix.template bottomRows<r>()), (matrix.template block<r,cols>(rows-r,0)));
|
||||||
@ -74,6 +84,16 @@ template<typename MatrixType, int CRows, int CCols, int SRows, int SCols> void c
|
|||||||
VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,0)));
|
VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,0)));
|
||||||
VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,cols-c)));
|
VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,cols-c)));
|
||||||
|
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template topLeftCorner<r,Dynamic>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorner<r,Dynamic>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeftCorner<r,Dynamic>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRightCorner<r,Dynamic>(r,c)));
|
||||||
|
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template topLeftCorner<Dynamic,c>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorner<Dynamic,c>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeftCorner<Dynamic,c>(r,c)));
|
||||||
|
VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template bottomRightCorner<Dynamic,c>(r,c)));
|
||||||
|
|
||||||
VERIFY_IS_EQUAL((const_matrix.template topRows<r>()), (const_matrix.template block<r,cols>(0,0)));
|
VERIFY_IS_EQUAL((const_matrix.template topRows<r>()), (const_matrix.template block<r,cols>(0,0)));
|
||||||
VERIFY_IS_EQUAL((const_matrix.template middleRows<r>(sr)), (const_matrix.template block<r,cols>(sr,0)));
|
VERIFY_IS_EQUAL((const_matrix.template middleRows<r>(sr)), (const_matrix.template block<r,cols>(sr,0)));
|
||||||
VERIFY_IS_EQUAL((const_matrix.template bottomRows<r>()), (const_matrix.template block<r,cols>(rows-r,0)));
|
VERIFY_IS_EQUAL((const_matrix.template bottomRows<r>()), (const_matrix.template block<r,cols>(rows-r,0)));
|
||||||
|
Loading…
Reference in New Issue
Block a user