Set the offset time of a block
time_T ssSetOffsetTime(SimStruct *S, int_T st_index, time_T offset)
S
SimStruct representing an S-Function block.
st_index
Index of the sample time whose offset is to be set.
offset
Offset of the sample time specified by
st_index
.
The time_T
offset value specified by
offset
.
Use this macro in mdlInitializeSizes
or
mdlInitializeSampleTimes
to specify the offset of the sample
time where st_index
starts at 0. You must first invoke
the macros ssSetNumSampleTimes
and ssSetSampleTime
to set the sample
time before assigning an offset. Otherwise, a continuous sample time is assumed and
the offset is ignored.
C, C++
See the S-function mixedmex.c
used in sfcndemo_mixedmex
.