Sign in
nest-open-source
/
nest-cam
/
v366
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
doc
/
examples
/
DenseBase_middleRows_int.cpp
blob: 86516295c5d0243067fbdd7d192c9c2abc5d4c14 [
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
;
}