Specify the data type of a Dwork vector
DTypeId ssSetDWorkDataType(SimStruct *S, int_T vector, DTypeId dtID)
S
SimStruct representing an S-Function block.
vector
Index of a Dwork vector, where the index is one of
0
, 1
, 2
,
...
ssGetNumDWork(S)-1
.
dtID
ID of a data type.
The data type ID specified by dtID
. Returns
-1
if dtID
is
DYNAMICALLY_TYPED
.
Use in mdlInitializeSizes
or
mdlSetWorkWidths
to set the data type of the specified work
vector. For a list of built-in values for the data type ID dtId
,
see ssGetInputPortDataType
. For more
information on using DWork vectors, see How to Use DWork Vectors.
C, C++
See the S-function sfun_rtwdwork.c
used in sfcndemo_sfun_rtwdwork
.