1
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-05-08 05:49:06 +08:00
eigen/doc/snippets/Cwise_minus_equal.cpp

4 lines
47 B
C++

Array3d v(1, 2, 3);
v -= 5;
cout << v << endl;