aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-08-22 17:18:43 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-08-22 17:18:43 +0200
commit39864ebe1eb7c8028769cf5d8750faaabce22446 (patch)
tree643c3d74e03f7180507c297698489fd3a75df8a2 /doc/snippets
parent600e52fc7f574504fa832d67c9d94c991e504bdc (diff)
bug #336: improve doc for PlainObjectBase::Map
Diffstat (limited to 'doc/snippets')
-rw-r--r--doc/snippets/Matrix_Map_stride.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/snippets/Matrix_Map_stride.cpp b/doc/snippets/Matrix_Map_stride.cpp
new file mode 100644
index 000000000..ae42a127a
--- /dev/null
+++ b/doc/snippets/Matrix_Map_stride.cpp
@@ -0,0 +1,7 @@
+Matrix4i A;
+A << 1, 2, 3, 4,
+ 5, 6, 7, 8,
+ 9, 10, 11, 12,
+ 13, 14, 15, 16;
+
+std::cout << Matrix2i::Map(&A(1,1),Stride<8,2>()) << std::endl;