mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
6 lines
132 B
C++
6 lines
132 B
C++
MatrixXf matA(2, 2);
|
|
matA << 1, 2, 3, 4;
|
|
MatrixXf matB(4, 4);
|
|
matB << matA, matA/10, matA/10, matA;
|
|
std::cout << matB << std::endl;
|