1
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-05-04 01:34:07 +08:00
eigen/doc/snippets/Tutorial_commainit_01.cpp
2008-08-28 21:44:56 +00:00

6 lines
65 B
C++

Matrix3f m;
m << 1, 2, 3,
4, 5, 6,
7, 8, 9;
cout << m;