App Designer: Update Text Area Value with parameter change

조회 수: 68 (최근 30일)
Sena Koçak
Sena Koçak 2022년 3월 14일
댓글: xiaokai an 2022년 6월 11일
In MATLAB App Designer, I want to change/update the value in the text area object with some parameter change? Could you explain how can I achieve this task?

답변 (2개)

Cris LaPierre
Cris LaPierre 2022년 3월 14일
See this page, particularly the code at the very top.
Now just figure out what action you want to trigger the change, and add the code to that callback function.
  댓글 수: 1
Sena Koçak
Sena Koçak 2022년 3월 15일
Thanks for the answer Cris. Actually, my case is kinda tricky. After pushing a button, my optimization code starts to work. In a text area, I want to show the iteration nymber. As I say, the iteration number is change while the code is still running. However, I cannot manipulate the text area dynamically while the code executes.

댓글을 달려면 로그인하십시오.


xiaokai an
xiaokai an 2022년 6월 11일
My answer may help you.
Pass 'app' as a parameter into the m file containing the logic program, and then use it in the m file
app. TextArea. Value = num2str(666666);
Such code rewrites the value of text.
  댓글 수: 1
xiaokai an
xiaokai an 2022년 6월 11일
When the program runs too fast, it may not display normally. You need to add the following pause code near the rewritten code
pause(1);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by