| Contents | Index |
int_T ssGetIWorkValue(SimStruct *S, int_T idx)
The int_T value stored in the idx element of the integer work vector for this S-function. Returns NULL if no value was assigned into the idx element of the IWork vector.
Use this macro in the simulation loop, mdlInitializeConditions, or mdlStart routines to obtain an element of the IWork vector. The vector consists of elements of type int_T and is of length ssGetNumIWork(S). Typically, this vector is initialized in mdlStart or mdlInitializeConditions, updated in mdlUpdate, and used in mdlOutputs.
C, C++
The following statement
int_T v = ssGetIWorkValue(S, 0);
is equivalent to
int_T* wv = ssGetIWork(S); int_T v = wv[0];
For a complete example using ssGetIWork, see the S-function stvctf.c used in sfcndemo_stvctf.mdl.
ssGetNumIWork, ssGetIWork, ssSetIWorkValue

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 |