From 9466e5f94edbff1219cd48639fd0ef80e11b85a9 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Tue, 19 Aug 2008 04:30:28 +0000 Subject: * 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. --- doc/snippets/Cwise_less_equal.cpp | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 doc/snippets/Cwise_less_equal.cpp (limited to 'doc/snippets/Cwise_less_equal.cpp') diff --git a/doc/snippets/Cwise_less_equal.cpp b/doc/snippets/Cwise_less_equal.cpp new file mode 100644 index 000000000..3b7a68ece --- /dev/null +++ b/doc/snippets/Cwise_less_equal.cpp @@ -0,0 +1,2 @@ +Vector3d v(1,2,3), w(3,2,1); +cout << (v.cwise()<=w) << endl; -- cgit v1.2.3