Advisor.authoring.NegativeBlockTypeConstraint クラス
名前空間: Advisor.authoring
スーパークラス:
サポートされていないブロックをチェックするモデル アドバイザー制約を作成する
説明
Advisor.authoring.NegativeBlockTypeConstraint
クラスのインスタンスは、モデルに含まれていてはならないブロックを定義します。
作成
constraint = Advisor.authoring.NegativeBlockTypeConstraint
はこのクラスのインスタンスを作成します。
プロパティ
例
サポートされていないブロック タイプの指定
以下のコマンドでは、指定したマスクをもつ Integrator ブロック、Rate Transition ブロック、または Constant ブロックをモデルに含めることができないことを指定します。
c1=Advisor.authoring.NegativeBlockTypeConstraint; c1.ID='ID_1'; s1=struct('BlockType','Integrator','MaskType',''); s2=struct('BlockType','RateTransition','MaskType',''); s3=struct('BlockType','Constant','MaskType','Stateflow'); c1.UnsupportedBlockTypes={s1;s2;s3};
バージョン履歴
R2018a で導入