![]() |
Da Vinci Firmware 1
Firmware for the DaVinci-M rocket avionics board.
|
Functions | |
| boolean_T | rtIsInf (real_T value) |
| Checks if a double-precision value is positive or negative infinity. | |
| boolean_T | rtIsInfF (real32_T value) |
| Checks if a single-precision value is positive or negative infinity. | |
| boolean_T | rtIsNaN (real_T value) |
| Checks if a double-precision value is Not-a-Number (NaN). | |
| boolean_T | rtIsNaNF (real32_T value) |
| Checks if a single-precision value is Not-a-Number (NaN). | |
Checks if a double-precision value is positive or negative infinity.
This is a wrapper around the standard C library function isinf().
| [in] | value | The real_T (double) value to check. |
true if the value is infinite, false otherwise. Definition at line 40 of file rt_nonfinite.c.
Referenced by rt_powd_snf(), and rt_powd_snf().

Checks if a single-precision value is positive or negative infinity.
This is a wrapper around the standard C library function isinf().
| [in] | value | The real32_T (float) value to check. |
true if the value is infinite, false otherwise. Definition at line 50 of file rt_nonfinite.c.
Checks if a double-precision value is Not-a-Number (NaN).
This is a wrapper around the standard C library function isnan().
| [in] | value | The real_T (double) value to check. |
true if the value is NaN, false otherwise. Definition at line 60 of file rt_nonfinite.c.
Referenced by optimalAngle(), rt_powd_snf(), and rt_powd_snf().

Checks if a single-precision value is Not-a-Number (NaN).
This is a wrapper around the standard C library function isnan().
| [in] | value | The real32_T (float) value to check. |
true if the value is NaN, false otherwise. Definition at line 70 of file rt_nonfinite.c.