mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-20 16:49:38 +08:00
4 lines
59 B
C++
4 lines
59 B
C++
Array3d v(3, 2, 4), w(5, 4, 2);
|
|
v /= w;
|
|
cout << v << endl;
|