Index value for button group

14 次查看(过去 30 天)
I have a button group with 2 choices, being Low Pass and High Pass. I want to write the callback function for a button such that when I click on the button, it checks the selection of the button group. I tried to use this but it does not work and says unrecognised function or variable 'value'
% Button pushed function: STARTButton
function STARTButtonPushed(app, event)
selection = app.FilterTypeButtonGroup.SelectedObject;
if selection == 'Low Pass'
value = 1;
elseif selection == 'High Pass'
value = 2;
end
app.SelectionEditField.Value = value;
end

采纳的回答

Walter Roberson
Walter Roberson 2022-5-22
SelectedObject for a uibuttongroup is the handle of the button, not its label.
A button group is not a single object that happens to display multiple buttons. A button group is a collection of buttons, each of which can have its own behavior and label and position controls and whatever.
  2 个评论
Ye Ken Kok
Ye Ken Kok 2022-5-22
So if I want to give each button like an index number, what should I do?
Walter Roberson
Walter Roberson 2022-5-22
You could set UserData for each button. Or you could set the tag for each button.
Of you could set the String property for each button, after which you could do
selection = app.FilterTypeButtonGroup.SelectedObject.String;
and then you would not need an index for them.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 App Building 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by