I found the solution. I needed to set the uieditfield.Value to a different number after I had used the value to change the orientation of my detector. I chose zero as I am unlikely to edit the field with a new value of zero.
Use uieditfield.ValueChangedFcn to change uieditfield.value by same amount
4 views (last 30 days)
Show older comments
John Williams
on 11 Mar 2022
Commented: John Williams
on 11 Mar 2022
I have a gui that contains a uieditfield component. The editfield changes the orientation of a detector by the uieditfield.Value amount. Many times I wish to change the field by increments of 1. For example, I enter a value, say 1 into the edit field box. The next time I want to move the detector by the same amount. When I type in 1 to the uieditfield box, the detector does not move, however, if I type in 1.1 then the detector moves. I believe that this behavior is connected to the uieditfield method ValueChangedFcn. I am using uieditfield.ValueChangedFcn as a callback to move the detector. My question is:
How can I change the orientation of my detector by using constant increments? Should I use a different ui component to get the behavior I need? Is the problem actually in using uieditfield.ValueChangedFcn?
0 Comments
Accepted Answer
More Answers (1)
Voss
on 11 Mar 2022
It sounds like what's going on is that the ValueChangedFcn does not execute when the uieditfield's Value does not change. So you need a way to update the detector orientation when the detector orientation increment is not changing.
You may consider putting an additional component in your UI, say a uibutton whose ButtonPushedFcn increments the orientation of the detector by the amount given in the uieditfield's Value.
See Also
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!