mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 10:09:36 +08:00
4 lines
59 B
C++
4 lines
59 B
C++
Array3d v(1, 2, 3), w(2, 3, 0);
|
|
v *= w;
|
|
cout << v << endl;
|