mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-24 14:45:14 +08:00
5 lines
73 B
C++
5 lines
73 B
C++
|
Vector3d v(3,2,4);
|
||
|
Vector3d w(5,4,2);
|
||
|
v.cwise() /= w;
|
||
|
cout << v << endl;
|