bug #336: improve doc for PlainObjectBase::Map

This commit is contained in:
Gael Guennebaud
2017-08-22 17:18:43 +02:00
parent 600e52fc7f
commit 39864ebe1e
2 changed files with 11 additions and 0 deletions

View File

@@ -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;