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

4 lines
47 B
C++

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