mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-24 22:04:28 +08:00
bug #336: improve doc for PlainObjectBase::Map
This commit is contained in:
parent
600e52fc7f
commit
39864ebe1e
@ -577,6 +577,10 @@ class PlainObjectBase : public internal::dense_xpr_base<Derived>::type
|
||||
* while the AlignedMap() functions return aligned Map objects and thus should be called only with 16-byte-aligned
|
||||
* \a data pointers.
|
||||
*
|
||||
* Here is an example using strides:
|
||||
* \include Matrix_Map_stride.cpp
|
||||
* Output: \verbinclude Matrix_Map_stride.out
|
||||
*
|
||||
* \see class Map
|
||||
*/
|
||||
//@{
|
||||
|
7
doc/snippets/Matrix_Map_stride.cpp
Normal file
7
doc/snippets/Matrix_Map_stride.cpp
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user