Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / MatrixBase_row.cpp
blobb15e6260c851b80b36f9f7530550b7c45eabde70
1 Matrix3d m = Matrix3d::Identity();
2 m.row(1) = Vector3d(4,5,6);
3 cout << m << endl;