Sign in
eigen
/
mirror
/
336ad582131f94b9e77c91c83c067dbd0c54c3fc
/
.
/
doc
/
snippets
/
MatrixBase_cwise_const.cpp
blob: 2b7e481c88d1b6707569af6cbfabb051d5919ebe [
file
] [
log
] [
blame
]
Vector3d
v
(-
1
,
2
,-
3
);
cout
<<
"the absolute values:"
<<
endl
<<
v
.
cwise
().
abs
()
<<
endl
;
cout
<<
"the absolute values plus one:"
<<
endl
<<
v
.
cwise
().
abs
().
cwise
()+
1
<<
endl
;
cout
<<
"sum of the squares: "
<<
v
.
cwise
().
square
().
sum
()
<<
endl
;