mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
6 lines
199 B
C++
6 lines
199 B
C++
|
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;
|