aboutsummaryrefslogtreecommitdiff
path: root/doc/snippets/tut_arithmetic_transpose_aliasing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/tut_arithmetic_transpose_aliasing.cpp')
-rw-r--r--doc/snippets/tut_arithmetic_transpose_aliasing.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/snippets/tut_arithmetic_transpose_aliasing.cpp b/doc/snippets/tut_arithmetic_transpose_aliasing.cpp
new file mode 100644
index 000000000..c8e4746d0
--- /dev/null
+++ b/doc/snippets/tut_arithmetic_transpose_aliasing.cpp
@@ -0,0 +1,5 @@
+Matrix2i a; a << 1, 2, 3, 4;
+cout << "Here is the matrix a:\n" << a << endl;
+
+a = a.transpose(); // !!! do NOT do this !!!
+cout << "and the result of the aliasing effect:\n" << a << endl; \ No newline at end of file