aboutsummaryrefslogtreecommitdiff
path: root/doc/snippets/PartialRedux_sum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/PartialRedux_sum.cpp')
-rw-r--r--doc/snippets/PartialRedux_sum.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/snippets/PartialRedux_sum.cpp b/doc/snippets/PartialRedux_sum.cpp
new file mode 100644
index 000000000..ec82d3e41
--- /dev/null
+++ b/doc/snippets/PartialRedux_sum.cpp
@@ -0,0 +1,3 @@
+Matrix3d m = Matrix3d::Random();
+cout << "Here is the matrix m:" << endl << m << endl;
+cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;