Info
此问题已关闭。 请重新打开它进行编辑或回答。
How do I allow the user to iterate an expression within a GUI without permanently applying the processing code?
1 次查看(过去 30 天)
显示 更早的评论
As stated above, I want to allow the user to iterate within a GUI to find the optimal code, but I want them to be able to deselect the option they chose and revert any of the changes made.
Can I do this without calling an earlier version of the image back into the figure axes? For example, I want to allow the user to hit an "Apply" button to make the changes permanent and prior to that I want them to make any kind of changes they want without permanently applying that particular line of code.
Thank you!
0 个评论
回答(2 个)
Walter Roberson
2012-7-17
MATLAB has no built-in "undo". You will need to recall a previous version of the image.
0 个评论
Image Analyst
2012-7-17
"iterate within a GUI to find the optimal code" sounds like genetic programming. Or do you mean find the optimal set of parameters (rather than code)? Anyway, you cannot do that without recalling an earlier version of your image (which I know is what you wanted to avoid). Any kind of undo/reverse capability would do just that anyway.
4 个评论
Image Analyst
2012-7-21
Yes. You can have a temporary image that the user can mess around with as much as they want, displaying the changes in an axes. If you want to overwrite your original image with your final temporary image, of course you're free to do that.
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!