このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。
setModelParameter
説明
setModelParameter(
はコード生成とキャリブレーション ファイル (a2l) 生成用に指定されたモデル パラメーターを設定します。この関数を使用して、指定されたモデル パラメーターをストレージ クラスおよびストレージ クラス プロパティの設定にマッピングします。これらの設定は C コードを生成するために、コード ジェネレーターによって使用されます。または、そのパラメーター用のキャリブレーション アクセスを設定します。myCodeMappingObj
,modelParameter
,Name,Value
)
例
モデル パラメーターのストレージ クラスの設定
モデル ConfigurationRapidPrototypingInterface
のモデル コード マッピングで、モデル パラメーター K1
のストレージ クラスを ExportedGlobal
に設定します。
openExample("ConfigurationRapidPrototypingInterface"); cm = coder.mapping.api.get("ConfigurationRapidPrototypingInterface"); setModelParameter(cm,"K1",StorageClass="ExportedGlobal");
モデル内のモデル パラメーターのストレージ クラスを Model default
に設定
モデル ConfigurationRapidPrototypingInterface
のモデル コード マッピングで、モデル全体のモデル パラメーターのストレージ クラスを Model default
に設定します。
openExample("ConfigurationRapidPrototypingInterface"); cm = coder.mapping.api.get("ConfigurationRapidPrototypingInterface"); paramHandles = find(cm,"ModelParameters") setModelParameter(cm,paramHandles,StorageClass="Model default");
モデル パラメーターのストレージ クラスの設定
モデル ConfigurationRapidPrototypingInterface
のモデル コード マッピングで、モデル パラメーター Table1
および Table2
のストレージ クラスを ExportedGlobal
に設定します。
openExample("ConfigurationRapidPrototypingInterface"); cm = coder.mapping.api.get("ConfigurationRapidPrototypingInterface"); setModelParameter(cm,"Table1",StorageClass="ExportedGlobal",Identifier="mp_Table1"); setModelParameter(cm,"Table2",StorageClass="ExportedGlobal",Identifier="mp_Table2");
モデル パラメーターのキャリブレーション プロパティの設定
モデル ConfigurationRapidPrototypingInterface
のモデル コード マッピングから、モデル パラメーター引数 LOWER
に対して構成されたキャリブレーション プロパティを設定します。
openExample("ConfigurationRapidPrototypingInterface"); cm = coder.mapping.api.get("ConfigurationRapidPrototypingInterface"); setModelParameter(cm,"LOWER",Export=true); setModelParameter(cm,"LOWER",CalibrationAccess="Calibration"); setModelParameter(cm,"LOWER",CompuMethod="CM_param"); setModelParameter(cm,"LOWER",DisplayIdentifier="param_lower"); setModelParameter(cm,"LOWER",Format="%4.2");
入力引数
myCodeMappingObj
— コード マッピング オブジェクト
CodeMapping
オブジェクト
関数 coder.mapping.api.get
の呼び出しによって返されるコード マッピング オブジェクト (モデル コード マッピング)。
例: myCM
modelParameter
— モデル パラメーターの名前
文字ベクトル | string | 文字ベクトルの cell 配列 | string スカラーの cell 配列
設定するモデル ワークスペース パラメーターの名前。
例: "Table1"
データ型: char
| string
名前と値の引数
オプションの引数のペアを Name1=Value1,...,NameN=ValueN
として指定します。ここで、Name
は引数名、Value
は対応する値です。名前と値の引数は他の引数の後に配置しなければなりませんが、ペアの順序は重要ではありません。
R2021a より前では、コンマを使用して各名前と値を区切り、Name
を引用符で囲みます。
例: StorageClass="ExportedGlobal"
StorageClass
— ストレージ クラスの名前
Auto
| Dictionary default
| ExportedGlobal
| ImportedExtern
| ImportedExternPointer
| Model default
指定されたモデル パラメーター用に設定するストレージ クラス。事前定義済みのストレージ クラスまたはモデルに関連付けられた Embedded Coder ディクショナリで定義されているストレージ クラスの名前。C コード生成のパラメーターの構成を参照してください。
Identifier
— 変数名
文字ベクトル | string スカラー
生成されたコード内でモデル パラメーターを表す変数の名前。
データ型: char
| string
Export
— キャリブレーション ファイル (a2l) に対するモデル パラメーターの生成を有効または無効にする
true
(既定値) | false
キャリブレーション ファイル (a2l) に対してモデル パラメーターを生成するには、このプロパティを有効にします。
BitMask
— モデル パラメーター値から単一ビットを抽出する
16 進数値
キャリブレーションでモデル パラメーターから単一ビットを抽出する 16 進数形式のマスク値。このプロパティは整数にのみ適用されます。
データ型: hexadecimal
CalibrationAccess
— モデル パラメーターのキャリブレーションを有効または無効にする
Calibration
(既定値) | NoCalibration
Calibration
を選択して、モデル パラメーターのキャリブレーションを有効にします。NoCalibration
を選択して、モデル パラメーターの値を表示し、キャリブレーションを無効にします。
CompuMethod
— 変換メソッドの名前
文字ベクトル | string スカラー
読みやすくするために ECU 内部値を物理値に変換するメソッド名。
データ型: char
| string
DisplayIdentifier
— モデル パラメーターの表示名
文字ベクトル | string スカラー
キャリブレーション ツールで測定する目的のモデル パラメーターのオプションの表示名。Simulink モデルのモデル パラメーター名とは異なります。
データ型: char
| string
Format
— モデル パラメーター値の表示形式
%[length].[layout]
キャリブレーション ツールの測定に指定される特殊な表示形式。この形式の指定はモデル パラメーターの CompuMethod
で指定される表示形式よりも優先されます。
バージョン履歴
R2020b で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)