MATLAB: Can I not find the Simulink data types ID definition in Simulink documentation

data typedata typesdatatypedatatypessimulink

I want to see the documentation for the data types ID that are used by Simulink, such as: SS_DOUBLE = 0, SS_SINGLE = 1, etc.

Best Answer

This bug has been fixed in Release 2007a (R2007a). For previous product releases, read below for any possible workarounds:
Documentation on the data types ID definition is missing from Simulink manual.
Here is additional information on the data types ID definition:
You can open the file: $MATLAB\simulink\include\simstruc_types.h.
where $MATLAB is the MATLAB root directory on your machine
Under that file you can find the following data types ID definition:
typedef enum {
SS_DOUBLE = 0, /* real_T */
SS_SINGLE = 1, /* real32_T */
SS_INT8 = 2, /* int8_T */
SS_UINT8 = 3, /* uint8_T */
SS_INT16 = 4, /* int16_T */
SS_UINT16 = 5, /* uint16_T */
SS_INT32 = 6, /* int32_T */
SS_UINT32 = 7, /* uint32_T */
SS_BOOLEAN = 8 /* boolean_T */
} BuiltInDTypeId;