how do I test for INF, -INF and NaN

Hi,

I’m trying to write a software that will catch if a float gets a “INF” or “-INF” or “NaN”.
the isInf() function is not supported and i tried several options, none worked.
please help.

I believe you can compare directly using the macros INF and -INF (e.g., “if (f == INF)”).

I don’t know of instances where the Dynamic C floating point library will use a NaN value other than INF or -INF.

Can you post an example of what you’re trying to test for, and how the test is failing?