aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Cwise_isNaN.cpp
blob: cc1e7fe6afca9bee7e85d3ed68417e0c6050d5b3 (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 << isNaN(v) << endl;