Tutorial_Map_rowmajor.cpp
Go to the documentation of this file.
1 int array[8];
2 for(int i = 0; i < 8; ++i) array[i] = i;
3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl;
4 cout << "Row-major:\n" << Map<Matrix<int,2,4,RowMajor> >(array) << endl;
5 cout << "Row-major using stride:\n" <<
6  Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
7 
Definition: numpy.h:543
int array[8]


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:51:19