Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
How do I allow the user to iterate an expression within a GUI without permanently applying the processing code?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (2)
Walter Roberson
le 17 Juil 2012
MATLAB has no built-in "undo". You will need to recall a previous version of the image.
0 commentaires
Image Analyst
le 17 Juil 2012
"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 commentaires
Image Analyst
le 21 Juil 2012
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.
Cette question est clôturée.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!