Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c55b0172b26fcf0a0b8d5ef0b98c87128e0f6bdb
/
.
/
doc
/
snippets
/
PartialRedux_squaredNorm.cpp
blob: 9f3293e658c59d61af3c1724beaa3575d9b55bca [
file
] [
log
] [
blame
]
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
;