1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // Academic License - for use in teaching, academic research, and meeting
- // course requirements at degree granting institutions only. Not for
- // government, commercial, or other organizational use.
- // File: rtGetNaN.cpp
- //
- // MATLAB Coder version : 5.3
- // C/C++ source code generated on : 25-Apr-2023 21:10:09
- //
- // Abstract:
- // MATLAB for code generation function to initialize non-finite, NaN
- // Include Files
- #include "rtGetNaN.h"
- #include "rt_nonfinite.h"
- // Function: rtGetNaN
- // ======================================================================
- // Abstract:
- // Initialize rtNaN needed by the generated code.
- // NaN is initialized as non-signaling. Assumes IEEE.
- real_T rtGetNaN(void)
- {
- return rtNaN;
- }
- // Function: rtGetNaNF
- // =====================================================================
- // Abstract:
- // Initialize rtNaNF needed by the generated code.
- // NaN is initialized as non-signaling. Assumes IEEE
- real32_T rtGetNaNF(void)
- {
- return rtNaNF;
- }
- //
- // File trailer for rtGetNaN.cpp
- //
- // [EOF]
- //
|