Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c55b0172b26fcf0a0b8d5ef0b98c87128e0f6bdb
/
.
/
doc
/
snippets
/
Cwise_isInf.cpp
blob: be793081cf27e70af8f89ac2e6c1c56e99298e14 [
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
<<
isinf
(
v
)
<<
endl
;