mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-18 14:34:17 +08:00
fix filename
This commit is contained in:
parent
f98c758f61
commit
ca29620e25
5
doc/snippets/tut_matrix_assignment_resizing.cpp
Normal file
5
doc/snippets/tut_matrix_assignment_resizing.cpp
Normal file
@ -0,0 +1,5 @@
|
||||
MatrixXf a(2,2);
|
||||
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;
|
Loading…
Reference in New Issue
Block a user