| Contents | Index |
DTypeId ssSetInputPortDataType(SimStruct *S, int_T port, DTypeId id)
SimStruct representing an S-Function block.
Index of an input port.
ID of the data type accepted by port.
The data type ID specified by id. Returns -1 if id is DYNAMICALLY_TYPED.
Use this function in mdlInitializeSizes to set the data type of the input port specified by port. If the input port data type is inherited from the block connected to the port, set the data type to DYNAMICALLY_TYPED. In this case, the S-function must provide mdlSetInputPortDataType and mdlSetDefaultPortDataTypes methods to enable the data type to be set correctly during signal propagation.
The following table is a list of built-in data types associated with the index DTypeId.
| Integer Data Type ID (DTypeId) | Built-in Data Type |
|---|---|
| 0 | SS_DOUBLE |
| 1 | SS_SINGLE |
| 2 | SS_INT8 |
| 3 | SS_UINT8 |
| 4 | SS_INT16 |
| 5 | SS_UINT16 |
| 6 | SS_INT32 |
| 7 | SS_UINT32 |
| 8 | SS_BOOLEAN |
C, C++
Suppose that you want to create an S-function with two input ports, the first of which inherits its data type from the driving block and the second of which accepts inputs of type int8_T. The following code sets up the data types.
ssSetInputPortDataType(S, 0, DYNAMICALLY_TYPED) ssSetInputPortDataType(S, 1, SS_INT8)
See the S-function sfun_dtype_io.c used in sfcndemo_dtype_io.mdl and the S-function sdotproduct.c used in sfcndemo_sdotproduct.mdl for complete examples that use this function.

Learn more about Simulink through this collection of videos, articles, technical literature and the Getting Started with Simulink Guide.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |