Files
Polyhedron/external/eigen-3.4.0/doc/snippets/Cwise_boolean_not.cpp
T
Efim Beshmenev 7f9dc067a1 Initial commit
2026-07-10 19:16:42 +03:00

6 lines
105 B
C++

Array3d v(1,2,3);
v(1) *= 0.0/0.0;
v(2) /= 0.0;
cout << v << endl << endl;
cout << !isfinite(v) << endl;