mirror of
https://github.com/Dev-KATECH/ADM.git
synced 2026-05-17 01:43:59 +09:00
75 lines
1.8 KiB
C
75 lines
1.8 KiB
C
/*
|
|
* rt_nonfinite.c
|
|
*
|
|
* 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.
|
|
*
|
|
* Code generation for model "CANTest".
|
|
*
|
|
* Model version : 1.360
|
|
* Simulink Coder version : 8.14 (R2018a) 06-Feb-2018
|
|
* C source code generated on : Tue Jul 11 11:56:08 2023
|
|
*
|
|
* Target selection: slrt.tlc
|
|
* Note: GRT includes extra infrastructure and instrumentation for prototyping
|
|
* Embedded hardware selection: Generic->32-bit x86 compatible
|
|
* Code generation objectives: Unspecified
|
|
* Validation result: Not run
|
|
*/
|
|
|
|
/*
|
|
* Abstract:
|
|
* Function to initialize non-finites,
|
|
* (Inf, NaN and -Inf).
|
|
*/
|
|
#include "rt_nonfinite.h"
|
|
#include "rtGetNaN.h"
|
|
#include "rtGetInf.h"
|
|
|
|
real_T rtInf;
|
|
real_T rtMinusInf;
|
|
real_T rtNaN;
|
|
real32_T rtInfF;
|
|
real32_T rtMinusInfF;
|
|
real32_T rtNaNF;
|
|
|
|
/*
|
|
* Initialize the rtInf, rtMinusInf, and rtNaN needed by the
|
|
* generated code. NaN is initialized as non-signaling. Assumes IEEE.
|
|
*/
|
|
void rt_InitInfAndNaN(size_t realSize)
|
|
{
|
|
(void) (realSize);
|
|
rtNaN = rtGetNaN();
|
|
rtNaNF = rtGetNaNF();
|
|
rtInf = rtGetInf();
|
|
rtInfF = rtGetInfF();
|
|
rtMinusInf = rtGetMinusInf();
|
|
rtMinusInfF = rtGetMinusInfF();
|
|
}
|
|
|
|
/* Test if value is infinite */
|
|
boolean_T rtIsInf(real_T value)
|
|
{
|
|
return (boolean_T)((value==rtInf || value==rtMinusInf) ? 1U : 0U);
|
|
}
|
|
|
|
/* Test if single-precision value is infinite */
|
|
boolean_T rtIsInfF(real32_T value)
|
|
{
|
|
return (boolean_T)(((value)==rtInfF || (value)==rtMinusInfF) ? 1U : 0U);
|
|
}
|
|
|
|
/* Test if value is not a number */
|
|
boolean_T rtIsNaN(real_T value)
|
|
{
|
|
return (boolean_T)((value!=value) ? 1U : 0U);
|
|
}
|
|
|
|
/* Test if single-precision value is not a number */
|
|
boolean_T rtIsNaNF(real32_T value)
|
|
{
|
|
return (boolean_T)(((value!=value) ? 1U : 0U));
|
|
}
|