how to transfer A PushButton Value to Simulink Model ?
11 ビュー (過去 30 日間)
古いコメントを表示
IN APP Designer,I put a Pushbutton, In Simulink Model, added a Constant blockes, how to transfer A PushButton Value to Simulink Model ?
thank you a lot!!
0 件のコメント
回答 (1 件)
Shlok
2024 年 10 月 29 日 8:42
Hi Zhang,
You can attach callbacks in App Designer to pass values from input components to a Simulink model when a "PushButton" is clicked.
Within the app, set up an "enter" callback function that uses “set_param” to update the “Constant” block with the specified value.
Here, through the following steps, I have implemented the same:
1. Added a “Constant” block and a “Display” block, connected them, and saved the model as “sample_model.slx”.
2. In App Designer, created a new app.
3. Added a “Button” with an appropriate name (say, "PushButton") and a “Numeric Edit Field” (say, "Constant Input").
4. Upon right-click on “PushButton” in App Designer, selected “Callbacks > Add PushButtonPushed” callback.
5. In the code editor, added the following code inside the callback function:
function PushButtonPushed(app, event)
% ConstantInputEditField is the generated name of ConstantInput in codebase
value = app.ConstantInputEditField.Value;
% Update the Constant block in the Simulink model
set_param('sample_model/Constant', 'Value', num2str(value));
end
6. Run the app, entered a value in the "Constant Input" field, and clicked "PushButton." The “Constant” block in Simulink is updated with the new value.
Hence, using the above-mentioned approach, you can pass the values to the Simulink model from App.
To know more about writing callbacks for GUI in App Designer, you can refer to the following MathWorks Documentation link:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Interactive Model Editing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!