xref
: /
external
/
eigen
/
doc
/
snippets
/
Map_simple.cpp
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
int
array
[
9
];
2
for
(
int
i
=
0
;
i
<
9
; ++
i
)
array
[
i
] =
i
;
3
cout
<<
Map
<
Matrix3i
>(
array
) <<
endl
;
4