Callback execution using regular expression
5 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a GUI that has 25 checkboxes to plot different signals in an axes. There are several operations that can be performed by the user on the signals by triggering callbacks (scaling,rotation,...).
I just want to re-trigger the 25 callbacks without having to copy the 25 callback calls. Is there any way of doing this using regular expressions (with regexp or similar)?
Jose
0 个评论
回答(1 个)
Walter Roberson
2016-4-15
No.
Create a cell array of handles to the functions, and then you can loop through that.
You should also be considering using the same function for all of them, possibly with different parameters or by looking at the Tag of hObject to figure out which button was invoked.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!