Skip to Main Content Skip to Search
Product Documentation

ssSetInputPortDataType - Set the data type of an input port

Syntax

DTypeId ssSetInputPortDataType(SimStruct *S, int_T port, DTypeId id)

Arguments

S

SimStruct representing an S-Function block.

port

Index of an input port.

id

ID of the data type accepted by port.

Returns

The data type ID specified by id. Returns -1 if id is DYNAMICALLY_TYPED.

Description

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
0SS_DOUBLE
1SS_SINGLE
2SS_INT8
3SS_UINT8
4SS_INT16
5SS_UINT16
6SS_INT32
7SS_UINT32
8SS_BOOLEAN

Languages

C, C++

Example

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.

See Also

ssGetInputPortDataType

  


Related Products & Applications

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