What functionality is afforded by ssSetModel​ReferenceS​ampleTimeD​efaultInhe​ritance and ssSetModel​ReferenceS​ampleTimeD​isallowInh​eritance in C MEX S-functions in Simulink?

1 回表示 (過去 30 日間)
Some C MEX S-functions provided with Simulink use the ssSetModelReferenceSampleTimeDefaultInheritance and ssSetModelReferenceSampleTimeDisallowInheritance macros in their SampleTime routines. I would like further documentation on the functionality afforded by these macros.

採用された回答

MathWorks Support Team
MathWorks Support Team 2009 年 6 月 27 日
This bug has been fixed in Release 2007b (R2007b). For previous product releases, read below for any possible workarounds:
Documentation on the ssSetModelReferenceSampleTimeDefaultInheritance and ssSetModelReferenceSampleTimeDisallowInheritance macros is missing from Simulink documentation.
Here is additional information on these macros:
The ssSetModelReferenceSampleTimeDefaultInheritance and ssSetModelReferenceSampleTimeDisallowInheritance macros are alternatives to the ssSetModelReferenceSampleTimeInheritanceRule macro. The following expressions are equivalent:
ssSetModelReferenceSampleTimeDefaultInheritance(S);
ssSetModelReferenceSampleTimeInheritanceRule(S, USE_DEFAULT_FOR_DISCRETE_INHERITANCE);
Likewise, the following expressions are also equivalent:
ssSetModelReferenceSampleTimeDisallowInheritance(S);
ssSetModelReferenceSampleTimeInheritanceRule(S, DISALLOW_SAMPLE_TIME_INHERITANCE);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBlock and Blockset Authoring についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by