Main Content
ssGetDWorkName
Get the name of a Dwork vector
Syntax
char_T *ssGetDWorkName(SimStruct *S, int_T vector)
Arguments
S
SimStruct that represents an S-Function block.
vector
Index of the work vector, where the index is one of
0
,1
,2
,...
ssGetNumDWork(S)-1
.
Returns
A pointer (char_T *
) to the character vector that represents
the name of the DWork vector specified by the index
vector
.
Description
Use to obtain the name of a particular DWork vector.
Languages
C, C++
Examples
The following lines get the DWork vector name and display it at the MATLAB® command prompt.
char_T *dname = ssGetDWorkName(S, 0); ssPrintf("Initial value of %s has been set to 1\n",dname);
See Also
Version History
Introduced before R2006a