Sign in
eigen
/
mirror
/
2a6be5492fcb4133c98f15a5c8bb3a96fa68cf3e
/
.
/
doc
/
snippets
/
Cwise_isFinite.cpp
blob: 1da55fd1602ce21ea6c14b46b79532e63bb5ac3a [
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
;