set_paramでブロック変数の変更ができない
34 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
基喜
el 14 de Jun. de 2023
Comentada: 基喜
el 14 de Jun. de 2023
set_paramでブロック変数の変更をしようとするとエラーが出てしまいます。
例えばConstantブロックのValueを変えようとすると以下のエラーがでます。
「パラメーター 'Value' に対する Constant block 'Constant' 内の設定が無効です」
解決策をご教示頂けないでしょうか。
宜しくお願い致します。
0 comentarios
Respuesta aceptada
Toshinobu Shintai
el 14 de Jun. de 2023
例えば、以下のように記述していませんでしょうか。
set_param('Constant', 'Value', 2)
渡せる値は数値ではなく、文字列です。例えばブロックに2を入れたい場合は、
set_param('Constant', 'Value', '2')
と記述します。
Más respuestas (0)
Ver también
Categorías
Más información sobre プログラムによるモデル編集 en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!