Determine whether the elements of a Dwork vector are real or complex numbers
CSignal_T ssGetDWorkComplexSignal(SimStruct *S, int_T vector)
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
.
COMPLEX_YES
(1
) if the specified vector
contains complex numbers; otherwise, COMPLEX_NO
(0
).
Use to determine the numeric type of the DWork vector specified by the index
vector
.
C, C++
The following example throws an error if the first DWork vector is not complex.
CSignal_T cs = ssGetDWorkComplexSignal(S, 0); if(cs == COMPLEX_NO) { ssSetErrorStatus(S,"Signal must be complex."); }