File: rt_nonfinite.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 * rt_nonfinite.h 7 * 8 * Code generation for function 'calculateTransformations' 9 * 10 */ 11 12 #ifndef __RT_NONFINITE_H__ 13 #define __RT_NONFINITE_H__ 14 #define rtInf mxGetInf() 15 #define rtMinusInf (-mxGetInf()) 16 #define rtNaN mxGetNaN() 17 #define rtIsNaN(X) mxIsNaN(X) 18 #define rtIsInf(X) mxIsInf(X) 19 #define rtIsNaNF(X) mxIsNaN(X) 20 #define rtIsInfF(X) mxIsInf(X) 21 #endif 22 /* End of code generation (rt_nonfinite.h) */ 23 |