Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NaN が返されるたびに、返される値を代わりに 0 にしたいと思います。この目的を達成するための最良の方法は何ですか?
この機能を使用できます
float zero_nan(float n) { return n == n ? n : 0; }
関数をインライン化し、nans であると思われる戻り値をラップすることができます。