Sign in
third-party-mirror
/
eigen
/
2571273647cdf6673639ebe9b3aa3237c1e7a822
/
.
/
doc
/
snippets
/
Cwise_boolean_not.cpp
blob: 404fd94743983832a534cef65f423ba102bd8226 [
file
] [
log
] [
blame
]
Array3d
v
(
1
,
2
,
3
);
v
(
1
)
*=
0.0
/
0.0
;
v
(
2
)
/=
0.0
;
cout
<<
v
<<
endl
<<
endl
;
cout
<<
!
isfinite
(
v
)
<<
endl
;