eigen/doc/snippets/Cwise_minus_equal.cpp
Benoit Jacob 9466e5f94e * doc improvements in Cwise and PartialRedux:
- 33 new snippets
  - unfuck doxygen output in Cwise (issues with function macros)
  - more see-also links from outside, making Cwise more discoverable
* rename matrixNorm() to operatorNorm(). There are many matrix norms
  (the L2 is another one) but only one is called the operator norm.
  Risk of confusion with keyword operator is not too scary after all.
2008-08-19 04:30:28 +00:00

4 lines
54 B
C++

Vector3d v(1,2,3);
v.cwise() -= 5;
cout << v << endl;