フィルターのクリア

Change message in static text in a gui -loop

4 ビュー (過去 30 日間)
Inês Mendes
Inês Mendes 2015 年 7 月 7 日
コメント済み: Image Analyst 2015 年 7 月 8 日
Hi guys,
I am having some trouble changing a static text in a gui. I have a loop and a message that changes along that loop.
I want the message in the static text to change with it.
I have tried using set() but it isn't working...
For example:
If x=2
d='True';
else
d='False';
end
set(handles.statictext,'String',d);
Can anyone help?
Thanks in advance!
Inês

採用された回答

Image Analyst
Image Analyst 2015 年 7 月 7 日
Use double equals and not equals. Also use if not If, and use drawnow. Try it like this:
if x==2 % Use == not =
d='True';
else
d='False';
end
set(handles.statictext,'String',d);
drawnow; % Force immediate update.
  2 件のコメント
Inês Mendes
Inês Mendes 2015 年 7 月 7 日
i don´t know why it´s not working...
it still appears an error : attemp to reference field of non-structure array
Image Analyst
Image Analyst 2015 年 7 月 8 日
You probably did not give the "tag" property of your static text label. Put
handles
right before the set() call, and see what values it lists for handles. Your static text label should be one of the names listed.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by