Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
189376f1eb10ecaca8a0b1ea00eba0e6f995da27
/
.
/
doc
/
snippets
/
Map_inner_stride.cpp
blob: d95ae9b3ed82f5d2f1dcf3307f244649d88106c5 [
file
] [
log
] [
blame
]
int
array
[
12
];
for
(
int
i
=
0
;
i
<
12
;
++
i
)
array
[
i
]
=
i
;
cout
<<
Map
<
VectorXi
,
0
,
InnerStride
<
2
>
>
(
array
,
6
)
// the inner stride has already been passed as template parameter
<<
endl
;