Determine if a variable-step solver is being used to solve the S-function
boolean_T ssIsVariableStepSolver(SimStruct *S)
S
SimStruct representing an S-Function block or a Simulink® model.
The Boolean value true
if the solver being used to solve
S
is a variable-step solver. Otherwise, returns
false
.
Use to determine if the simulation is being solved using a variable or fixed-step solver. This is useful when you are creating S-functions that have zero crossings and an inherited sample time.
C, C++
See the S-function vsfunc.c
used in sfcndemo_vsfunc
and the S-function sfun_atol.c
used in sfcndemo_sfun_atol
.