aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Cwise_boolean_not.cpp
blob: 40009f15ae880419d7a54cfabac19dabe7bea46f (plain)
1
2
3
4
5
Array3d v(1,2,3);
v(1) *= 0.0/0.0;
v(2) /= 0.0;
cout << v << endl << endl;
cout << !isfinite(v) << endl;