How to display Counter Value from Simulink in App Designer?

6 ビュー (過去 30 日間)
Alexandra Miller
Alexandra Miller 2022 年 5 月 23 日
回答済み: aditi bagora 2023 年 10 月 5 日
I want to display countdown and trial block number in this App when I turn the countdown switch to on.
This has been achieved very easily in GUI using GUIDE.
The timer and trial block number come from simulink
In GUIDE, you can just use the text figure setting. But in App, that is not an option in the simulink block.
The way I am getting around it now is just opening up two separate figures for the Trial Block and Countdown.
But I would like to have it all contained in the App. How can I just display the counts in the edit fields or even in a label on the App? Thank you!

回答 (1 件)

aditi bagora
aditi bagora 2023 年 10 月 5 日
Hi Alexandra,
I understand that you're looking to display the values of the "counter" and "Trial" blocks generated from your Simulink model in the edit field or label of your App. There are a few methods you can use to accomplish this.
  1. One approach is to initiate the simulation of your model by using the sim('your_model_name’)command when the button is clicked. You can then save the outputs in a file or workspace and retrieve them to populate the edit field or label accordingly.
  2. Another option is to incorporate an event listener into your Simulink block using the "add_exec_event_listener(blk, event, listener)" function. This listener will be triggered in your app whenever the block's computation takes place, allowing you to access the values from the block within the listener.
You can refer to the documentation to learn more about accessing block data during simulation.
The following answer from the community can be helpful.

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by