1Array3d v(1,2,3);
2v(1) *= 0.0/0.0;
3v(2) /= 0.0;
4cout << v << endl << endl;
5cout << isnan(v) << endl;
6