Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c55b0172b26fcf0a0b8d5ef0b98c87128e0f6bdb
/
.
/
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
;