radiobutton commands

1 回表示 (過去 30 日間)
Andy
Andy 2011 年 9 月 23 日
Hi: I have 2 radiobutton, and a pushbutton, which when pushed, i want it ti tell me which of the radiobuttons are selected. I am usiung
value1 = get(handles.(radiobutton1), 'value')
where radiobutton1 is the tag of one of my radiobuttons, but it is saying it does not know what radiobutton1 is. any ideas?

採用された回答

Walter Roberson
Walter Roberson 2011 年 9 月 23 日
Try just
value1 = get(handles.radiobutton1, 'value')
If that doesn't work, and if you mean "tag" in the same sense it is used in handle graphics, then use
rb1h = findobj(0,'Tag','radiobutton1');
value1 = get(rb1h, 'value')
  1 件のコメント
Andy
Andy 2011 年 9 月 23 日
thanks, the first one worked, i took off the brackets, got the brackets from something else :D

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by