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