Sign in
eigen
/
mirror
/
75bcd155c40cb48e647c87c3f29052360255bc9e
/
.
/
doc
/
snippets
/
MatrixBase_cwiseInverse.cpp
blob: 74551cbb7b58d1d68e8a244fb4d293c7d4fc5c2e [
file
] [
log
] [
blame
]
MatrixXd
m
(
2
,
3
);
m
<<
2
,
0.5
,
1
,
3
,
0.25
,
1
;
cout
<<
m
.
cwiseInverse
()
<<
endl
;