Sign in
third-party-mirror
/
eigen
/
cb436af996b7c2531dead7746905380bc216900f
/
.
/
doc
/
examples
/
DenseBase_middleRows_int.cpp
blob: 6a25500883e6fc1305da391d82386944ce12e717 [
file
] [
log
] [
blame
]
#include
<
Eigen
/
Core
>
#include
<iostream>
int
main
()
{
int
const
N
=
5
;
Eigen
::
MatrixXi
A
(
N
,
N
);
A
.
setRandom
();
std
::
cout
<<
"A =\n"
<<
A
<<
'\n'
<<
std
::
endl
;
std
::
cout
<<
"A(2..3,:) =\n"
<<
A
.
middleRows
(
2
,
2
)
<<
std
::
endl
;
return
0
;
}