Add code snippets for new methods

This commit is contained in:
Deanna Hood
2015-03-17 03:40:28 +10:00
parent 1d76ceab55
commit 7b829940d1
10 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
Array3d v(1,2,3);
v(1) *= 0.0/0.0;
v(2) /= 0.0;
cout << v << endl << endl;
cout << isNaN(v) << endl;