blob: d95ae9b3ed82f5d2f1dcf3307f244649d88106c5 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001int array[12];
2for(int i = 0; i < 12; ++i) array[i] = i;
3cout << Map<VectorXi, 0, InnerStride<2> >
4 (array, 6) // the inner stride has already been passed as template parameter
5 << endl;