eigen/doc/snippets/Cwise_isFinite.cpp

6 lines
108 B
C++
Raw Normal View History

Array3d v(1, 2, 3);
v(1) *= 0.0 / 0.0;
2015-03-17 02:33:12 +08:00
v(2) /= 0.0;
cout << v << endl << endl;
2015-06-15 21:09:25 +08:00
cout << isfinite(v) << endl;