1
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-05-29 17:43:58 +08:00
eigen/doc/snippets/Cwise_times_equal.cpp

4 lines
59 B
C++

Array3d v(1, 2, 3), w(2, 3, 0);
v *= w;
cout << v << endl;