Sign in
eigen
/
mirror
/
9aa6fae123053cac30ca55ccaf9f1832d30e4b99
/
.
/
doc
/
snippets
/
Cwise_isNaN.cpp
blob: 7b2a930829c23f30ecbee79de48bcd0b07e27bef [
file
]
Array3d
v
(
1
,
2
,
3
);
v
(
1
)
*=
0.0
/
0.0
;
v
(
2
)
/=
0.0
;
cout
<<
v
<<
endl
<<
endl
;
cout
<<
isnan
(
v
)
<<
endl
;