-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtGetInf.c
61 lines (55 loc) · 1.24 KB
/
rtGetInf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* File: rtGetInf.c
*
* MATLAB Coder version : 5.4
* C/C++ source code generated on : 17-May-2022 16:48:18
*/
/*
* Abstract:
* MATLAB for code generation function to initialize non-finite, Inf and
* MinusInf
*/
/* Include Files */
#include "rtGetInf.h"
#include "rt_nonfinite.h"
/*
* Function: rtGetInf
* ================================================================== Abstract:
* Initialize rtInf needed by the generated code.
*/
real_T rtGetInf(void)
{
return rtInf;
}
/*
* Function: rtGetInfF
* ================================================================= Abstract:
* Initialize rtInfF needed by the generated code.
*/
real32_T rtGetInfF(void)
{
return rtInfF;
}
/*
* Function: rtGetMinusInf
* ============================================================= Abstract:
* Initialize rtMinusInf needed by the generated code.
*/
real_T rtGetMinusInf(void)
{
return rtMinusInf;
}
/*
* Function: rtGetMinusInfF
* ============================================================ Abstract:
* Initialize rtMinusInfF needed by the generated code.
*/
real32_T rtGetMinusInfF(void)
{
return rtMinusInfF;
}
/*
* File trailer for rtGetInf.c
*
* [EOF]
*/