Files
eigen/doc/snippets/Map_simple.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
94 B
C++
Raw Permalink Normal View History

2010-02-26 22:26:21 -05:00
int array[9];
for (int i = 0; i < 9; ++i) array[i] = i;
cout << Map<Matrix3i>(array) << endl;