Sign in
android
/
platform
/
external
/
eigen
/
ccd542196262e33f641fb09582267d9efb4b36b7
/
.
/
doc
/
snippets
/
Cwise_isNaN.cpp
blob: 7b2a930829c23f30ecbee79de48bcd0b07e27bef [
file
] [
log
] [
blame
]
Array3d
v
(
1
,
2
,
3
);
v
(
1
)
*=
0.0
/
0.0
;
v
(
2
)
/=
0.0
;
cout
<<
v
<<
endl
<<
endl
;
cout
<<
isnan
(
v
)
<<
endl
;