Files
Polyhedron/external/eigen-3.4.0/doc/snippets/Cwise_times_equal.cpp
T
Efim Beshmenev 7f9dc067a1 Initial commit
2026-07-10 19:16:42 +03:00

4 lines
55 B
C++

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