File: rtGetInf.h1 /* 2 * Academic License - for use in teaching, academic research, and meeting 3 * course requirements at degree granting institutions only. Not for 4 * government, commercial, or other organizational use. 5 * 6 * rtGetInf.h 7 * 8 * Code generation for function 'calculateTransformations' 9 * 10 */ 11 12 #ifndef __RTGETINF_H__ 13 #define __RTGETINF_H__ 14 #include <stddef.h> 15 #include "rtwtypes.h" 16 #include "rt_nonfinite.h" 17 18 extern real_T rtGetInf(void); 19 extern real32_T rtGetInfF(void); 20 extern real_T rtGetMinusInf(void); 21 extern real32_T rtGetMinusInfF(void); 22 23 #endif 24 25 /* End of code generation (rtGetInf.h) */ 26 |