Sign in
eigen
/
mirror
/
e7c799b7c984f9b8bea27967bb04a97c52e62582
/
.
/
doc
/
snippets
/
Cwise_isFinite.cpp
blob: c3309f2604e9ecd44fb7cd6e34e1bf7ee8622541 [
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
;