Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
189376f1eb10ecaca8a0b1ea00eba0e6f995da27
/
.
/
doc
/
snippets
/
Cwise_isFinite.cpp
blob: 1da55fd1602ce21ea6c14b46b79532e63bb5ac3a [
file
] [
log
] [
blame
]
Austin Schuh
189376f
2018-12-20 22:11:15 +1100
[
diff
] [
blame^
]
1
Array3d
v
(
1
,
2
,
3
);
2
v
(
1
)
*=
0.0
/
0.0
;
3
v
(
2
)
/=
0.0
;
4
cout
<<
v
<<
endl
<<
endl
;
5
cout
<<
isfinite
(
v
)
<<
endl
;