commit | 42a050dc6881d00ed32ffe2b9d55192db8dca760 | [log] [tgz] |
---|---|---|
author | Jitse Niesen <jitse@maths.leeds.ac.uk> | Mon Dec 27 15:06:55 2010 +0000 |
committer | Jitse Niesen <jitse@maths.leeds.ac.uk> | Mon Dec 27 15:06:55 2010 +0000 |
tree | c2ffabd791fc1060ff62732d8b5a46fb67734154 | |
parent | dc3618a55727a0471940c42baacbe58629b348ca [diff] [blame] |
Finish doc page on aliasing.
diff --git a/doc/snippets/TopicAliasing_mult3.cpp b/doc/snippets/TopicAliasing_mult3.cpp new file mode 100644 index 0000000..1d12a6c --- /dev/null +++ b/doc/snippets/TopicAliasing_mult3.cpp
@@ -0,0 +1,4 @@ +MatrixXf matA(2,2); +matA << 2, 0, 0, 2; +matA.noalias() = matA * matA; +cout << matA;