commit | fef4e071d70870e91aba68b0a34e53bb20f9303f | [log] [tgz] |
---|---|---|
author | Deanna Hood <deanna.m.hood@gmail.com> | Tue Mar 17 05:58:47 2015 +1000 |
committer | Deanna Hood <deanna.m.hood@gmail.com> | Tue Mar 17 05:58:47 2015 +1000 |
tree | 61f3736001c24de62d50a1fac5fc4a581b346f53 | |
parent | 46cf9cda32be99fcd658a926c14088e087d91b7e [diff] [blame] |
Rename isinf to isInf
diff --git a/doc/snippets/Cwise_isInf.cpp b/doc/snippets/Cwise_isInf.cpp new file mode 100644 index 0000000..beb6746 --- /dev/null +++ b/doc/snippets/Cwise_isInf.cpp
@@ -0,0 +1,5 @@ +Array3d v(1,2,3); +v(1) *= 0.0/0.0; +v(2) /= 0.0; +cout << v << endl << endl; +cout << isInf(v) << endl;