Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c55b0172b26fcf0a0b8d5ef0b98c87128e0f6bdb
/
.
/
doc
/
snippets
/
MatrixBase_array_const.cpp
blob: cd3b26a7cf4c84812bd9e4cca480dd3ff9f204d2 [
file
] [
log
] [
blame
]
Vector3d
v
(-
1
,
2
,-
3
);
cout
<<
"the absolute values:"
<<
endl
<<
v
.
array
().
abs
()
<<
endl
;
cout
<<
"the absolute values plus one:"
<<
endl
<<
v
.
array
().
abs
()+
1
<<
endl
;
cout
<<
"sum of the squares: "
<<
v
.
array
().
square
().
sum
()
<<
endl
;