Sign in
eigen
/
mirror
/
63185be8b240ee1a9ef476af2fc06676d3d89fe0
/
.
/
doc
/
snippets
/
Cwise_boolean_not.cpp
blob: 40009f15ae880419d7a54cfabac19dabe7bea46f [
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
;