mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Small changes to tutorial page 1.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
MatrixXf a(2,2);
|
||||
cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
|
||||
std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
|
||||
MatrixXf b(3,3);
|
||||
a = b;
|
||||
cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;
|
||||
std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user