How can I quickly pass the output of a Simulink block to a GUI?
조회 수: 2 (최근 30일)
이전 댓글 표시
I currently have a simulink model in which a custom matlab function block performs some signal processing on a frame of data and then saves the results to the workspace with every iteration with the "assignin" command.
I then have a GUI, which I made in GUIDE, that uses a timer object to repeatedly pull this data from the workspace and display it in a variety of ways with the "evalin" command.
This works fine, but it is a little slow. I know I can read object parameters of a simulink block with my gui directly with the "get_param" command.
Is it aso possible to read the output of blocks in this way?
That is, can I employ a more direct or continuous method to read the output of the simulink blocks into my GUI without reading/writing to the workspace?
Thanks!
-Will
댓글 수: 0
답변 (2개)
Azzi Abdelmalek
2013년 4월 30일
get_param allows to read block parameters, the block output is not a parameter
댓글 수: 3
Rey
2013년 5월 3일
Have you tried using an event listener? Check out the link below and do some googling, I guess it is what you are looking for:
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!